Hey guys, I need help with two question for my homework on beginners class. I'm using Dev c++ program.
1a- Rewrite the Hello world example in your Dev-C++ compiler. Include your name, Class, Date and
Assignment Name right at the top before the header files.
/************************/
/***Your Name, Last name***/
/*******CECS 121-01*******/
/**Introductory Assignment**/
/**********Date**********/
/************************/
Note that Failure to do this will reduce your grade.
1b - Add your Name, Class, Assignment number and Date to the printf statement, so that your
program shows all these info along with the Hello World sentence.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#include<stdio.h>
#include<conio.h>
int main()
{printf ("/************************/");
printf ("/***First, Last***/");
printf ("/*******CECS*******/");
printf ("/**Assignment 1**/");
printf ("/**********01/15/2014**********/");
printf ("/************************/");
getch();
return (0);
}
|