What is the Difference between "C structure" and "C++
structure"?
Answer Posted / shweta iyer
In C, the header file used for input/output is #include<stdio.h>
whereas in C++, the header file used for input/output is
#include<iostream.h>
| Is This Answer Correct ? | 4 Yes | 10 No |
Post New Answer View All Answers
What are c++ stream classes?
What is polymorphism & list its types in c++?
What are all predefined data types in c++?
which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?
What is #include cstdlib in c++?
What is the difference between while and do while loop? Explain with examples.
Write a program in C++ for Fibonacci series
Which is most difficult programming language?
How are virtual functions implemented in c++?
What does return 0 do in c++?
Explain method of creating object in C++ ?
Write my own zero-argument manipulator that should work same as hex?
There are 100 students in a class. The management keep information in two tables. Those two tables are given like Roll no Name Age 001 ABC 15 002 XYZ 14 and Roll No Subject Marks 001 Math 75 001 Physics 55 002 Math 68 001 Hindi 69 They want the information like this Roll No Name Hindi Physics Math Total 001 ABC 69 55 75 199 002 XYZ 68 74 84 226 And Roll No Suject Highest 001 Math 98 007 Physics 84 021 Hindi 74 All 275 All information is kept in structure in main memory. You have to find last two tables.
What is the type of 'this' pointer? When does it get created?
What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard