Explain how do you override a defined macro?
No Answer is Posted For this Question
Be the First to Post Answer
What are the types of type specifiers?
Define Array of pointers.
What are c preprocessors?
How does the assert() function work?
What is structure padding in c?
Do you know what is the purpose of 'extern' keyword in a function declaration?
In which layer of the network datastructure format change is done
What is the difference between printf and scanf in c?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
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?