What is the Difference between Class and Struct?
Answer Posted / wfwre
Class elements are accessed using the provided methods.
Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
How can I implement sets or arrays of bits?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
Write a program for finding factorial of a number.
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Explain what is output redirection?
What is struct node in c?
What is use of pointer?
The file stdio.h, what does it contain?
How many loops are there in c?
What is string length in c?
What is difference between arrays and pointers?
What is the difference between functions getch() and getche()?
How do you determine the length of a string value that was stored in a variable?
Explain what does it mean when a pointer is used in an if statement?
Once I have used freopen, how can I get the original stdout (or stdin) back?