simple program to addition of two number in c language
#include<stdio.h>
void main()
{
int x,y,z;
x = 12;
y=23;
z = x + y;
printf("\n %d",z);
}

 

कोई टिप्पणी नहीं:

एक टिप्पणी भेजें