YouTip LogoYouTip

C Programming Tutorial - Hello World

Hello World

#include <stdio.h>

int main() {
    printf("Hello, World!\n");
    return 0;
}

Variables

int age = 25;
float price = 19.99;
char grade = 'A';
char name[] = "Alice";

Summary

  • C is compiled with gcc
  • Every program starts with main()
← C Pointers and ArraysJava Collections Framework β†’