Will the following program execute?
No Answer is Posted For this Question
Be the First to Post Answer
Disadvantages of c++
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
How many standards of c++ are there?
What do you mean by persistent and non persistent objects?
Write a program to get the value of sin (x) using a library function , when x is given in degrees.
What is difference between array and vector in c++?
What is function prototyping?
You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()
Why is null pointer used?
what are the types of Member Functions?
what is C++ objects?
Is there finally in c++?