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

Myself is a stright forward,a loving in nature....i love nature a lot .....and u frequently find me seeing Discovery as my mood changer......also like to some drawing....to play chess!! and the mst important woluld like to read interesting aricles in…

Favorite Forums
Favorite Tags
c x 2
eof x 1
Member Avatar for Vinod Supnekar

#include <stdio.h> int *check(); int main() { int *c; c = check(); printf("%d\n", c); return 0; } int *check() { int i=10; int *p=&i; return p; }

Member Avatar for Gonbe
0
192
Member Avatar for Vinod Supnekar

Hey hi , i want to read input frm user fm command prompt(Cmd)!!And aslo print it on Cmd. Now if i use [CODE] #include <stdio.h> main() { int c; while ((c=getchar()!=EOF)//get the sinle char putchar(c);//prnt it on cmd } [/CODE] But i dnt knw how to enter EOF as i …

Member Avatar for Ancient Dragon
0
417