CS3502/assignment1/part2/hello.c

8 lines
138 B
C

#include <stdio.h>
int main() {
printf("Welcome to OwlTech Industries!\n");
printf("Systems Programming Division\n");
return 0;
}