Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 465 Bytes

1-getting-started-with-c-programming.md

File metadata and controls

24 lines (16 loc) · 465 Bytes

1 Getting Started With C Programming

Video Link: https://youtu.be/KnvbUiSxvbM Tutorial Link: https://www.programiz.com/c-programming

Hello World is a simple program that is often used to introduce a new programming language to beginners.

Hello World Program in C

#include <stdio.h>

int main() {
  printf("Hello, World!");

  return 0;
}

Output

Hello, World!