the maximum length of a character constant can be
a) 2
b) 1
c) 8
No Answer is Posted For this Question
Be the First to Post Answer
What is an incomplete type in c++?
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; }
What is the Difference between "vector" and "array"?
15 Answers Covansys, Gambit, TCS, Wipro,
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What is c++ good for?
What is a memory leak c++?
What are manipulators used for?
Who was the creator of c++?
What are the different types of polymorphism in c++?
Explain the different access specifiers for the class member in c++.
Find the second maximum in an array?
Floating point representation and output seems to be compiler dependent?