how to learn c programming
The most interesting thing in C is that you can make OS with it.
A simple C file:
   #include<stdio.h>
   int main() {
      
      printf("Hello, World!");
      
      return 0;
}
 
 Web tutorial for C:
 
   english: https://www.programiz.com/c-programming
   hindi:   https://www.codewithharry.com/videos/c-language-tutorials-in-hindi-1
