1.

Write aprogram to greatest number with pointer​

Answer»

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);



Discussion

No Comment Found