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
~7K People Reached
Favorite Forums
Favorite Tags
c x 9
c++ x 1

5 Posted Topics

Member Avatar for comwizz

getch() returns the character you typed without displaying it on the screen. getche() returns the character you typed by displaying(echoing) it on the screen. and finally, getchar() works similarly and echos the character that u typed on the screen after "enter" is given. hope you understood!! all the best !! …

Member Avatar for Smartfitness33
1
5K
Member Avatar for rocky2008

clrscr() is usually given after the declaration of all variables. If it is given before the declaration(of variables), the compiler points out an error. Why is this due to ? Will there be any problem in allocating the required amount of memory if at all clrscr() is given before the …

Member Avatar for Ancient Dragon
0
934
Member Avatar for rocky2008

Can anyone explain the difference between * ptr++ and ++ *ptr ? To my understanding, * ptr++ increments the pointer and not the value pointed by it and ++ *ptr increments the value being pointed by it. Does the former mean incrementing the address of the pointer ? Please explain. …

Member Avatar for deceptikon
0
201
Member Avatar for rocky2008

can anyone please tell me the function of calloc() and malloc() and the difference between them ... what does (char*)malloc(n) mean ??

Member Avatar for surendra verma
0
176
Member Avatar for WillMcc

In the 10th line of your coding, cout should be followed by "<<" and not ">>" Rectify this and run the program.. The program will work..

Member Avatar for Shaun32887
-1
192

The End.