what are the basics to write c program
Answers
Answered by
2
Answer:
C Basic commandsExplanation#include <stdio.h>This is a preprocessor command that includes standard input output header file(stdio.h) from the C library before compiling a C programint main()This is the main function from where execution of any C program begins.
Similar questions