+ 4
How to print a string in C language without simicolon.
i want to print string using C language without simicolon. there is a way to do this.
2 odpowiedzi
0
#include <stdio.h>
int main()
{ char a[]="Hello";
if(printf("Hello World"))
return 0;
}