Hey there! First-time visitor? Contact Us

Write a Program to print Hello Word in Dev C

 

Steps to run in DEV-C++

  • Open DEV-C++.
  • Click on File > New > Source File
  • write a code.
  • Click on File > Save As, name it hello.c, and save it.
  • Click Execute > Compile & Run or press F9
#include <stdio.h>

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

Post a Comment