The main features of the C language include:
General Purpose and Portable
Low-level Memory Access
Fast Speed
Clean Syntax
/li>
Basic Program
#include(stdio.h)
int main() {
//print the string in output screen
printf("Hello, World!");
return 0;
}
OUTPUT
Hello, World!
what we learn in hello world programe
1.#include(stdio.h)
this is c labraly standard input output.the code of keyword are written in this language
2.int main
This is the method of c programming.in main method you write code in colori brackets