Where can I run c++ program?
No Answer is Posted For this Question
Be the First to Post Answer
whats the size of class EXP on 32 bit processor? class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; };
What is pure virtual function?
simple c++ program for "abcde123ba" convert "ab321edcba" with out using string
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
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?
What are single and multiple inheritances in c++?
How does c++ sort work?
Which is better turbo c++ or dev c++?
What is a lambda function c++?
What is a constructor and how is it called?
What is c++ library?
What do you mean by internal linking and external linking in c++?