Answer Posted / deepak saini
Object is runtime representation of class in memory.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the condition that is applied with ?: Operator?
What is the difference between union and anonymous union?
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
cavium networks written test pattern ..
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
What is the difference between printf and scanf in c?
How are strings stored in c?
What is c language & why it is used?
Explain what is the benefit of using an enum rather than a #define constant?
Why malloc is faster than calloc?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
Is null always equal to 0(zero)?
Is there a built-in function in C that can be used for sorting data?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Here is a good puzzle: how do you write a program which produces its own source code as output?