Is dev c++ free?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between pass by value and pass by reference?
What is using namespace std in cpp?
how is returning structurs from functions?Show an eg?
What is abstraction in c++ with example?
What is command line arguments in C++? What are its uses? Where we have to use this?
What is endl?
What is a catch statement?
What are the various storage classes in C++?
How do you instruct your compiler to print the contents of the intermediate file showing the effects of the preprocessor?
List out some of the OODBMS available?
Can you be able to identify between straight- through and cross- over cable wiring? And in what case do you use straight- through and cross-over?
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