What do you mean by static variables?
No Answer is Posted For this Question
Be the First to Post Answer
let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a->b->c and c->a.
What do you understand by pure virtual function? Write about its use?
What are features of c++?
Write a corrected statement in c++ so that the statement will work properly. x =+ 7;
How do you write a function that can reverse a linked-list?
How does throwing and catching exceptions differ from using setjmp and longjmp?
what is the difference between linear list linked representaion and linked representation? what is the purpose of representing the linear list in linked represention ? is it not avoiding rules of linear represention?
Explain the uses oof nested class?
What is a local reference?
Are strings mutable in c++?
an integer constant must have atleast one a) character b) digit c) decimal point
C++ program output? Explain output of this program. #include <iostream> using std::cout; using std::cin; int main() { cout<<cout<<' '; cout<<cin; return 0; } It prints some address in hexadecimal. what is it?