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
Why main is not a keyword in c?
What are data structures in c and how to use them?
What is difference between function overloading and operator overloading?
Write a code to generate a series where the next element is the sum of last k terms.
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
what is the difference between static variable and register variable?
how to make a scientific calculater ?
What are identifiers c?
How can I do graphics in c?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.
What is ponter?