Naren wrote:
> Hello,
>
> int main(){
> int i=2,j=3;
>
> printf("%d %d",i,j);
>
> #define i j
> #define j i
>
> printf("%d %d",i,j);
>
> }
>
> What is the ouput in both the cases
[modulo some whitespace]
int main()
{
int i = 2, j = 3;
printf("%d %d", i, j);
printf("%d %d", i, j);
}
--
Martin Ambuhl
|