Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
4
Posts with Downvotes
1
Downvoting Members
4
2 Commented Posts
0 Endorsements
Ranked #107.55K
~797 People Reached
Favorite Forums
Favorite Tags
c x 1

1 Posted Topic

Member Avatar for hemant_is_here

[CODE]#include<stdio.h> #include<conio.h> void display (int *j); void main() { int *a; int b=5; a=&b; display(a); getch(); } void display(int *j) { printf("%d",*j); }[/CODE] output........... 5

Member Avatar for jamma
0
797

The End.