How is computer programming useful in real life?
No Answer is Posted For this Question
Be the First to Post Answer
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; }
Describe about storage allocation and scope of global, extern, static, local and register variables?
What is data structure in c++?
What is a c++ object?
What is the exit function in c++?
What are member functions used in c++?
i want the NIC programmer-B model papaer pattren, iwant the all model papers?
How did c++ start?
How a macro differs from a template?
Can c++ do everything c can?
What are the differences between the function prototype and the function defi-nition?
write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)