Do you know what are the new features that iso/ansi c++ has added to original c++ specifications?
No Answer is Posted For this Question
Be the First to Post Answer
Which function should be used to free the memory allocated by calloc()?
What are built-in functions? What is the syntax for the definition?
What happens when you make call 'delete this;'?
this is to swap to strings....but in output the whole strings are swapped leaving first as it is...why it is so #include<iostream.h> int main() { char a[]="ajeet"; char b[]="singh"; long x=*a; long y=*b; cout<<x<<":"<<y; x=x+y; y=x-y; x=x-y; *a=x; *b=y; cout<<x<<":"<<y; cout<<&a<<endl; cout<<&b<<endl; }
Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].
What is the difference between public and private data members?
What is the use of endl in c++?
What do you mean by volatile and mutable keywords used in c++?
Difference between a copy constructor and an assignment operator.
What is meant by entry controlled loop?
0 Answers Agilent, ZS Associates,
Describe new operator and delete operator?
How size of a class can be calulated?