C
Example
A hello world program will look like:
#include <stdio.h>
int main() {
printf("Hello World!\n");
return 0;
}To compile and run, try:
gcc -o hello hello.c ./hello
A hello world program will look like:
#include <stdio.h>
int main() {
printf("Hello World!\n");
return 0;
}To compile and run, try:
gcc -o hello hello.c ./hello