What is pass by value & reference.
No Answer is Posted For this Question
Be the First to Post Answer
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"; }
It is possible to build a C++ compiler on top of a C compiler. How would you do this?
Without using third variable write a code to swap two numbers.
Tell us the size of a float variable.
How do you write a function that can reverse a linked-list in C++?
Explain the difference between method overriding and method overloading in C++?
What is the difference between malloc, calloc and realloc?
Mention the default functions in C++, how would you detect that error has occurred inside the constructor and destructor.
Write a program to generate the Fibonocci Series in C++.
How to run C++ program in cmd
How many times will this loop execute? Explain your answer.
What is pass by value & reference.