Monday, June 25, 2018

Program to change the value of integer using pointer - DS (C Program)

#include<stdio.h>
void main()
{
int a = 10;
int *pa=&a;

clrscr();
*pa=20;
printf("%u",a);
getch();
}

No comments:

Post a Comment