Evaulate: 22%5
a) 2
b) 4
c) 0
No Answer is Posted For this Question
Be the First to Post Answer
Explain the properties and principles of oop.
What are the advantages and disadvantages of using inline and const?
2 Answers Polaris, TCS, Zimmer Biomet,
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 does n mean in c++?
How long does it take to get good at leetcode?
What is wrapper class in c++?
Can I learn c++ without learning c?
an operation between an integer and real always yeilds a) integer result b) real result c) float result
Explain what are single and multiple inheritances in c++?
what is a reference variable in C++?
What is your strongest programming language (Java, ASP, C, C++, VB, HTML,C#, etc.)?
24 Answers Infosys, Microsoft, TCS,
Write a program for Divide a number with 2 and Print the output ( NOTE: Check for divide by zero error).