STL (140)
OOPS (873)
C++ General (2409) How is the using() pattern useful? What is IDisposable? How does it support deterministic finalization?
1 14461what is the behaviour of C and C++ compiler for the below statements. int *p; p = malloc(100); Is the behaviour same ? or different ?
2 5822Find out the bug in this code,because of that this code
will not compile.......
#include
Is swift faster than go?
What is the difference between delegation and implemented-in-terms-of?
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.
Name the debugging methods that are used to solve problems?
Which bit wise operator is suitable for putting on a particular bit in a number?
What are libraries in c++?
Can I learn c++ in a week?
What is pointer with example?
What language is oop?
Why interface is used?
What is string in c++ programming?
Do you know about C++ 11 standard?
Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02
Can create new c++ operators?
why and when we can declar member fuction as a private in the class?