vivek.m
Member
- Member since
- Jan 26, 2009
- Last active
- May 14, 2009
- Total activities
- 0
Activity feed
Recent contributions
-
#Threads
894b3071-e9e4-45b5-9317-aa3622fdbdf7
Hi, Please paste the errors you get in ubuntu in the following code #include <iostream> using std::cout; using std::endl; using std::ios; class...
-
#Threads
8fd2e13c-5c91-40c8-a6a7-9dbeea44926f
It wont work in C++ as in C++, it's necessary to declare function before using. Moreover, function arguments while calling that function...
-
#Threads
9c368603-0e62-4660-a9fe-2fb69ee15d44
Hi Deesha, I have got the answer. Let's go back to the definition of 'private' variable A 'private' data member or member...
-
#Threads
156f807c-f9e6-4dce-a18a-9902c8068405
#include <iostream> using namespace std; class A { public: A(int r){a = r;} int add(A& e2) { e2.a = 7; //let's modify...
-
#Threads
ef68db8a-4fbe-4ecb-84f1-44c7e4d48772
pradeep_agrawalBelow code was compiled and executed on a 32-bit machine where size if 'int' is '4': #include “stdio.h” int main() { int...