How is a structure member accessed?
No Answer is Posted For this Question
Be the First to Post Answer
Tell us something about keyword 'auto'.
How can a program be made to print the line number where an error occurs?
Why is c called c?
Is there sort function in c?
Explain union.
What is int main () in c?
Compare interpreters and compilers.
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
implement general tree using link list
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
explain what are pointers?