Is there anything like an ifdef for typedefs?
No Answer is Posted For this Question
Be the First to Post Answer
What is #line used for?
Can we change the value of #define in c?
What are compound statements?
What are register variables? What are the advantage of using register variables?
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }
Explain zero based addressing.
What is structure packing ?
Explain what is output redirection?
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
Is an array parameter is always "by reference" ?