How can I list all of the predefined identifiers?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what are run-time errors?
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
what do structure language means?
What is the need of structure in c?
What is volatile variable in c with example?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is hungarian notation? Is it worthwhile?
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
What is #include conio h?
When a c file is executed there are many files that are automatically opened what are they files?
Write a pro-gramme to determine whether the number is even or odd?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;