CLEO Help % problems

CLEO related
Status
Not open for further replies.

TAKTAK26

Member
Joined
Mar 17, 2019
Messages
23
Reaction score
1
Friends, I have a problem. Whatever way I print the percentage value, I can not help. Can you help me? (Example %d% s and so on.)
 

monday

Expert
Joined
Jun 23, 2014
Messages
1,127
Solutions
1
Reaction score
158
if your goal is to display "%" character itself, then use "%%". Example:

C:
#include <stdio.h>
int main()
{
    printf("%%");
    return 0;
}
which outputs:
%
 
Status
Not open for further replies.
Top