1The most interesting thing in C is that you can make OS with it.
2
3A simple C file:
4
5 #include<stdio.h>
6 int main() {
7
8 printf("Hello, World!");
9
10 return 0;
11}
12
13 Web tutorial for C:
14
15 english: https://www.programiz.com/c-programming
16 hindi: https://www.codewithharry.com/videos/c-language-tutorials-in-hindi-1
1#include <stdio.h>
2
3int main() {
4 /* my first program in C */
5 printf("Hello, World! \n");
6
7 return 0;
8}
1#include <stdio.h>
2
3int main() {
4 /* my first program in C */
5 printf("Hello, World! \n");
6
7 return 0;
8}
9