What does asterisk mean in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between malloc()/free() and new/delete?
What is c++ vb?
Why preincrement operator is faster than postincrement?
What is the last index number in an array of 100 characters a) 100 b) 99 c) 101
Can static member variables be private?
Write the program form Armstrong no in c++?
What is ios flag in c++?
Write about the stack unwinding?
what is C++ exceptional handling?
How do you declare A pointer to function which receives an int pointer and returns a float pointer
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
What is the difference in size of this two clasees? Class A { int a; char c; float f; } Class B { float f; char c; int a; }