Saved Bookmarks
| 1. |
Write aprogram to greatest number with pointer |
|
Answer» C PROGRAM to FIND Largest of Two NUMBERS using POINTERS #include #include void main() { int x,y, *large, *xptr,*yptr; clrscr(); printf("Enter the value of x and y :"); scanf("%d%d",&x,&y); |
|