Explain what are compound statements?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the use of #pragma exit?
What is scope rule of function in c?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
Tell me when would you use a pointer to a function?
What is a wrapper function in c?
What is the difference between break and continue?
What is the main differences between C and Embedded C?
Can a program have multiple main() functions?
What does typedef struct mean?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff