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 225 views
4 answers 578 views
1 answer 295 views
1 answer 197 views
2 answers 239 views
...