if i want to print india how can i print without using ;
How to use printf in c with out ;?
Try this code
int main()
{
int c = 0;
if (printf("India\n") == 0)
c = 1;
return c;
}
You cannot avoid using ; but you can compare the return value
of printf.
Reply:by using #define
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment