What is ofstream c++?
No Answer is Posted For this Question
Be the First to Post Answer
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
What is difference between c++ 11 and c++ 14?
implement stack using stack.h headerfile functions
1 Answers Exilant, GMG, Subex, University,
What are c++ tokens?
Explain deep copy and a shallow copy?
Can a class be static in c++?
What is istream and ostream in c++?
const char * char * const What is the differnce between the above two?
Write a program to get the value of sin (x) using a library function , when x is given in degrees.
What is stream and its types in c++?
Can we declare a base-class destructor as virtual?