What relational operators if statements in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Does c++ support exception handling?

0 Answers  


What is the use of this pointer in c++?

0 Answers  


Can we have "Virtual Constructors"?

10 Answers   TCS,


When one must use recursion function? Mention what happens when recursion functions are declared inline?

0 Answers  


1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?

5 Answers  


What is a constructor initializer list and when we use constructor initializer list?

3 Answers   Soft Info, TCS,


Write bites in Turbo c++ Header ("Include") Files.

0 Answers  


How would you use the functions sin(), pow(), sqrt()?

0 Answers  


write a program that will produce the ff. output. "what fruit will you buy? 1)apple 2)orange 3)mango ENTER CHOICE (1,2 or 3)> HOW MANY WILL YOU BUY?> THAT WILL COST XX.XX

1 Answers  


What is near, far and huge pointers? How many bytes are occupied by them?

0 Answers  


what is Loop function? What are different types of Loops?

0 Answers  


What is expression parser in c++

0 Answers   Mphasis,


Categories