Run C and C++ Program in Command Line using DevC++ (Windows)

Опубликовано: 25 Июль 2020
на канале: MKR Programming
3,074
70

Install DevC++ from: https://bloodshed-dev-c.en.softonic.c...

Commands used:
To Compile and Run a program: sourceFile.c or sourceFile.cpp
Method-1
Compile: gcc programFile.c will generate a.exe
Run: a
Method-2
Compile: gcc programFile.c -o outputFile.exe will generate outputFile.exe
Run: outputFile