Answer Posted / shruti
An object is the instance of the class..
it is the only gateway to access the entities defined in
the class..
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
How main function is called in c?
Why is c fast?
Write a program to print “hello world” without using semicolon?
Can we initialize extern variable in c?
What is a structure and why it is used?
What is cohesion and coupling in c?
How can I write a function analogous to scanf?
Explain what is a pragma?
What are the salient features of c languages?
How do you determine whether to use a stream function or a low-level function?
Explain output of printf("Hello World"-'A'+'B'); ?
What is far pointer in c?
What does return 1 means in c?
Describe wild pointers in c?
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