answersLogoWhite

0

In C, programs are composed of statements. These statements are terminated with a semi-colon, and are collected in sections known as functions. By convention, a statement should be kept on its own line, as shown in the example below:

#include <stdio.h>

int main(void)

{

printf("Hello, World!\n");

return 0;

}

User Avatar

Wiki User

13y ago

What else can I help you with?