Joined
Last Seen
-6 Reputation Points
- 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
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: [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 |
The End.