What are the different scope C++ provide ?
No Answer is Posted For this Question
Be the First to Post Answer
What is static variable and difference between(const char *p,char const *p,const char* const p).
When would you use a pointer? A reference?
Identify the error in the following program. include<iostream> using namespace std; void main() { int num[]={1,2,3,4,5,6}; num[1]==[1]num ? cout<<"Success" : cout<<"Error"; }
what is a pragma in C++?
Tell How To Check Whether A Linked List Is Circular ?
How does free know the size of memory to be deleted
Consider the following C++ program
C++ Public access specifier instead of Private – What is bad ?
Write a program to generate the Fibonocci Series in C++.
What Is A Conversion Constructor C++ ?
Identify the error in the following program. #include<iostream.h> void main() { int i = 0; i = i + 1; cout « i « " "; /*comment *//i = i + 1; cout << i; }
Is there a difference between class and struct?