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
~742 People Reached
About Me

Nothing special in me...but there might be something eXtr@0rd!n@rY within

Favorite Forums
Favorite Tags
c x 1
c++ x 1
Member Avatar for Dani

Can someone please explain to me the difference between ++i and i++ when written as part of an expression (i.e. within loops and if statements) ? Thanks :)

Member Avatar for WaltP
0
644
Member Avatar for Gopala Krishnan

when i use a dynamic 2d char array using pointers, i dont get any errors but the program is not executed correctly... //Pro to enter and display strings using dynamic 2d char array. [code=c] #include<iostream.h> #include<conio.h> void main() { char **v; int s; cout<<"Enter size :: "; cin>>s; v=new char[s]; …

Member Avatar for VernonDozier
0
98