logoISU  

CS469/569 - Linux and Unix Administration and Networking

Spring 2022

Displaying ./code/03-22/hello.c

#include <stdio.h>

int main(int argc, char *argv[]) {
  printf("Hello world!\n");
  return 0;
}