What is main function in c++ with example?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Define a way other than using the keyword inline to make a function inline?

1 Answers  


Explain the auto storage classes in c++.

0 Answers  


What is scope operator in c++?

0 Answers  


Is string an object in c++?

0 Answers  


What is c++ and its features?

0 Answers  


Can create new c++ operators?

0 Answers  


Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }

2 Answers   CDAC, Wipro,


Which is most difficult programming language?

0 Answers  


What is the purpose of templates in c++?

0 Answers  


What is the difference between struct and class?

1 Answers  


Is it possible to have a recursive inline function in c++?

0 Answers  


What are shallow and deep copy?

0 Answers  


Categories