KSU CS3540 Assignment 1
Assignment 1
Modify the hello world program so that a "southern greeting" is display. Please email your source code to your instructor by 8:00 am on Tuesday, Jan 14th.
/* Name : Dalibor Labudovic
Course: CS3540 Sec. 2
Prof. : J. Higgins
*/
#include <stdio.h>
int main (int argc, char* argv[]){
printf("Howdy folks!");
return 0;
}
Comments
Post a Comment