Which bit wise operator is suitable for putting on a particular bit in a number?
No Answer is Posted For this Question
Be the First to Post Answer
If we want that any wildcard characters in the command line arguments should be appropriately expanded, are we required to make any special provision? If yes, which?
What is c++ w3school?
without if else statement can be written ah
What is boyce codd normal form in c++?
What is the keyword auto for?
char *ch = "abcde"; char c[4]; how to copy 'ch' to 'c'?
What is function declaration in c++ with example?
write infinite loop in C++ which does not use any variable or constant?
Can user-defined object be declared as static data member of another class?
What is double 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 object slicing and how can we prevent it?