LAB2

profilePuncho
Lab2.txt

// C code // This program will sum two integer numbers to yield a third integer number. // Developer: Faculty CMIS102 // Date: Jan 31, XXXX #include <stdio.h> int main () { /* variable definition: */ int x, y, z; /* variable initialization */ x = 10; y = 20; z = x + y; printf("Integers (x,y) and sum (z) are : %d,%d,%d \n", x,y,z); return 0; }