Does defining a function inline mean that it wont push and pop things on/off the stack ...like parameters and the return the address??
2 4179Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
CTS,
2574Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.
3012show that among any group of five (not necessary consecutive ) integers, there are two with the same remainder when divided by 4.
1 11125Write a program to get the value of sin (x) using a library function , when x is given in degrees.
1 4829Write a C++ program to sort digits of all the 4 digit number and display the sorted 4 digit number
1 5941. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?
3282Post New C++ General Questions
What is decltype c++?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
Is turbo c++ free?
What is else if syntax?
Difference between a homogeneous and a heterogeneous container
What is the best book for c++ beginners?
How do you declare a set in c++?
What language does google use?
What is the difference between prefix and postfix versions of operator++()?
Explain the virtual inheritance in c++.
What is constructor in C++?
What are default parameters? How are they evaluated in c++ function?
Why is c++ considered difficult?
What is a breakpoint?
Can a Structure contain a Pointer to itself?