symbolic constants
Posted
by gautam kumar
on Stack Overflow
See other posts from Stack Overflow
or by gautam kumar
Published on 2010-03-20T09:51:44Z
Indexed on
2010/03/20
10:01 UTC
Read the original article
Hit count: 376
Filed under:
c
#include<conio.h>
#include<stdio.h>
#define abc 7
int main()
{
int abc=1;
printf("%d",abc);
getch();
return 0;
}
why this program is giving compile time error
© Stack Overflow or respective owner