With the help of using classes, write a program to add two numbers.
No Answer is Posted For this Question
Be the First to Post Answer
What is double pointer?
What is c value paradox explain?
What does *p++ do? What does it point to?
What are the restrictions of a modulus operator?
What are the parts of c program?
Explain about block scope in c?
what is pointer ? what is the use of pointer?
Write a progarm to find the length of string using switch case?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
What is include directive in c?
Can an array be an Ivalue?