Breaking News

How to Compile and Run your First C Program



1- Download and Install Dev-C++ : Dev-C++
2 - Open Dev-C++, go to File > New > Source File
3 - Write the code:

#include <stdio.h>

int main(){
printf("%s", "Hello, this is your first progam in C");
return 0;
}

4 - Save as "IDEATest.c"
5 - Click Compile & Run button
6 - Congratulations, you wrote your first program in C

Full Video:

No comments