What is C (programming language):-
Basic Structure:-
#include<stdio.h>
int main(){
printf("Hello World");
return 0;
}
main():- Enter point of program.
printf():- Print output.
return() :- End the Program.
What is C (programming language):-
#include<stdio.h>
int main(){
printf("Hello World");
return 0;
}
Comments
Please sign in to comment.