Define function and Library function

#define for() 1111
main()
{
for();
printf(“%d\n”,for());
}

Tutorial answer:
1111
Debugging solution:
Normally for() it is inbuilt function but in these case we perform textual replacement for for() by 1111.so it will print 1111

Post a Comment

0 Comments