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
~152 People Reached
Favorite Forums
Favorite Tags
c x 1
Member Avatar for sreevisakh2007

[CODE] unsigned int *a; a = (int*)malloc(1*sizeof(int)); a[0] = 10; a[1] = 20; a[100] = 40; printf("%u",a[100]); [/CODE] I have created a pointer named a and allocated 'single' int space for it but still i can store and retrieve more than that. This code runs. Then what is the need …

Member Avatar for Ancient Dragon
0
152