#include <stdio.h>
#include <conio.h>
void main()
{
int a = 12, b = 4, c;
clrscr();
c = a + b;
printf("c::%d", c);
getch();
}
Output:
c::16
© Copyright , Programming Verse. All rights Reserved. | ThemeDaddy - Best Themes Everytime!