which operator is used for performing an exponential operation
a) >
b) ^
c) none
No Answer is Posted For this Question
Be the First to Post Answer
Why pure virtual functions are used if they don't have implementation / When does a pure virtual function become useful?
What is a .h file c++?
What is the use of namespace std in C++?
What is the default width for ouputting a long integer using the insertion operator?
Write is a binary search tree? Write an algo and tell complexity?
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.
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
How a modifier is similar to mutator?
What is data structure in c++?
What is low level language in simple words?
What is double in c++?
find the two largest values among the 6 numbers using control structures : do-while,for,if else,nestedif- else ,while. one or two of them.