Search

Theseus

How to declare negative number?


Source Code
#include <stdio.h>

int main()
{
int a=+3;
int b=-2;
printf("-a : %d / -b : %d \n",-a,-b);

return 0;
}

No comments:

Post a Comment