Sunday, 13 October 2013

ADD 2 no. without using semicolon in addition statement

#include<conio.h>
#include<stdio.h>
#define a 30;
void main()
{
int b=10;
int c;
c=b+a
printf("%d",c);
getch();
}

No comments:

Post a Comment