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
~764 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

2 Posted Topics

Member Avatar for Dani

i++ first takes the value of i and then gives the increment----(POST INCREMENT OPERATOR) whereas ++i first gives the increment to the assigned i value---(PRE INCREMENT OPERATOR) example::: i=6 i++ takes i and then gives increment i.e.,i++=5 but the compiler stores the value as 6 which is not the displayed …

Member Avatar for WaltP
0
661
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
103

The End.