Last Updated: February 25, 2016
·
318
· novalagung

C - Compile & Run via Command Line

for windows :

gcc source.c -o executable.exe && executable.exe

in linux / mac os :

gcc source.c -o executable && ./executable