What is setbase c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is microsoft c++ redistributable?
What is the difference between stack and heap memory?
What is main function in c++ with example?
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 are the two types of comments, and how do they differ?
What are the total number of lines written by you in C/C++? What is the most complicated or valuable program written in C/C++?
What is the last index number in an array of 100 characters a) 100 b) 99 c) 101
Who created c++?
What is the use of pointer in c++ with example?
Define pre-condition and post-condition to a member function in c++?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
What is c++ stringstream?