How to use printf() function without semicolon in C

1 Answer

0 votes
#include <stdio.h>

int main(int argc, char **argv)
{
	if (printf("C Programming\n"))  
	
    return 0;
}


/*
run:

C Programming

*/

 



answered Dec 24, 2018 by avibootz

Related questions

2 answers 221 views
4 answers 569 views
1 answer 287 views
1 answer 191 views
2 answers 233 views
...