//https://users.cs.utah.edu/~germain/PPS/Topics/C_Language/the_C_language.html
//COPY CODE SAVE TO TXT SAMPLE, test.c
//TO COMPILE IN TERMINAL :gcc test.c -o test
#include <stdio.h> // tell C about printf
int // return value of main function
main() // where the program begins
{
printf(" test\n");
return 0; // exit status of main program (could be any number
// that we agree means the program is finished)
}
Senin, 29 Juni 2026
The C Programming Language
Langganan:
Posting Komentar (Atom)

Tidak ada komentar:
Posting Komentar