What are all predefined data types in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Define a pointer to a data member of the type pointer to pointer?
How do you save a c++ program?
Explain explicit container.
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 problems might the following macro bring to the application?
Explain the difference between class and struct in c++?
Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?
Describe about storage allocation and scope of global, extern, static, local and register variables?
Comment on assignment operator in c++.
Are strings immutable in c++?
Will the following program execute?
what is VOID?