Thema mit den meisten Antworten:
Debian: c programme compilieren und aufrufen (starten) (18085x gelesen) |
...
...
...
...
...
Code: [Auswählen] #include <stdio.h> #include <conio.h> int main() { printf ("Hello World!"); getch(); return 0; } Code: [Auswählen] gcc -o test test.c und dann so Code: [Auswählen] cc -o test test.c ...