Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~769 People Reached
Favorite Tags
c++ x 7
c x 1
Member Avatar for madhu_raju76
Member Avatar for mosanta
0
194
Member Avatar for sahil_itprof

Can any onbe say me the exact difference between a pointer (*p) and the array p[]???? I mean to ask that when we pass an array to a function by reference, we can have both in the function definition, the * or we can manipulate the array too... But there …

Member Avatar for Aia
0
176
Member Avatar for sahil_itprof

Hey frnds.... I am a noob to the world of programming.... Can you plz give me info about all the member functions of istream class used with the cin???? For eg. cin.getline()... And plz provide the brief intro of each and every functions...:?:

Member Avatar for Ancient Dragon
0
139
Member Avatar for amitahlawat20

I am facing a problem in void pointers in c++. Have a look at the following code: [code=cplusplus] #include<iostream.h> int main() { void *ptr; int x=3; float y=2.35f; char c='A'; ptr=&x; cout<<endl<<*ptr; //line 1 ptr=&y; cout<<endl<<*ptr;// line 2 ptr=&c; cout<<endl<<*ptr;//line 3 cout<<endl; return 0; } [/code] I am getting the …

Member Avatar for sahil_itprof
0
149
Member Avatar for sahil_itprof

My CPP program gets abruptly terminated..... I think this happens because by some part of the program itself, the TC.exe gets overwritten and thats why it gets terminated..... Can any one help me out????

Member Avatar for sahil_itprof
0
111