Answer Posted / hr@tgksolutions.com
The Object-Oriented Programming System, or OOPs for short, is a paradigm that offers ideas like inheritance, classes, and objects.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Differentiate Source Codes from Object Codes
What is a rvalue?
What are the different data types in C?
What is the difference between call by value and call by reference in c?
What are the different types of C instructions?
Write a program on swapping (100, 50)
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
What is ## preprocessor operator in c?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
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
What is abstract data structure in c?
Write the Program to reverse a string using pointers.
What is the meaning of && in c?
What is the size of empty structure in c?
What is a floating point in c?