What are the valid types of data that the main () can
return in C/C++ language
Answer Posted / milind furia
int and void(if u consider this as a datatype) only
Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
What are the 4 pillars of oop?
Whats is abstraction in oops?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What is coupling in oops?
What is abstraction and encapsulation?
Is react oop?
what type of question are asked in thoughtworks pair programming round ?
What is debug class?what is trace class? What differences are between them? With examples.
Which language is not a true object oriented programming language?
Can we have inheritance without polymorphism?
What is the real time example of inheritance?
any one please tell me the purpose of operator overloading
write a program to find 2^n+1 ?
What is use of overloading?
What is destructor example?