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
~216 People Reached
Favorite Forums
Favorite Tags
c x 2
Member Avatar for capsicum

I am .........., a fresh B.E(computer science) graduate. I am now under my interview preparations and I hope this site would help me a lot. You all would help me possibly I think. And "A warm Hello" to old users and "A warm welcome" to new people. All the Best …

0
36
Member Avatar for capsicum

Consider this code: main() { void postinc(); postinc(); postinc(); postinc(); } void postinc() { static int count=1; printf("%d", count); count++; } What will be the output? Make me clear of this static concept......... What happens to the variable count? I know that it actually retains its value between funcion calls. …

Member Avatar for Adak
0
180