How to write C code without semicolons. For example, the program output line?

  • @something Please do not change the meaning of the question after this answer. - Nicolas Chabanovsky

1 answer 1

 const char str[] = {65, 9, 66, 0}; char *ptr = str; while (*ptr) putchar(*ptr++); 

Posted How will you pay?