Ak Blog

learn C basics

Published 3 hours ago

What is C (programming language):-

  • Language for general-purpose procedural programming
  • It was developed at Bell Laboratories by Dennis Ritchie.
  • used in embedded systems, operating systems, and system programming

Basic Structure:-

 


#include<stdio.h>
int main(){
printf("Hello World");
return 0;
}


#include:- include standard input/out library.
main():- Enter point of program.
printf():- Print output.
return() :- End the Program.

Comments

Please sign in to comment.