write the general structure of c program
Answers
Answered by
1
Answer:
Parts of C program-
Parts of C program-int main() – This is the line from where the execution of the program starts. ... printf(“Hello World”) –The printf() command is included in the C stdio. h library, which helps to display the message on the output screen. getch() – This command helps to hold the screen.
Answered by
3
Parts of C program-
int main() – This is the line from where the execution of the program starts. ... printf(“Hello World”) –The printf() command is included in the C stdio. h library, which helps to display the message on the output screen. getch() – This command helps to hold the
Similar questions