View Single Post
Old Feb 19th, 2002, 08:49 PM   #1
Sleazy P Martini
Senior Member
 
Sleazy P Martini's Avatar
 
Joined: Jan 2002
Location: Great White North
Posts: 1,582
Sleazy P Martini is on a distinguished road
My First Program!

I'm really excited! We just started C, C++ and I got to write my first program. It's nothing too exciting but to me it's step one in a cool direction.

/*My first program
Author: Andrew Gregory
Date: Feb 19 2002
Purpose of program: To learn how */

#include <stdio.h>

main()
{
int integer1, integer2, sum;

printf("Enter first integer\n");
scanf("%d", &integer1);
printf("Enter second integer\n");
scanf("%d", &integer2);
sum = integer1 + integer2;
printf("sum is %d\n", sum);

return 0;
}
__________________
Sleazy P Martini is offline   Reply With Quote