pointer example program in C
pointer example program inĀ C
pointer example program in C
What would be the output of following pointer program written in c
Ā main( )
{
int a = 10, b = 20 ;
swapr ( &a, &b ) ;
printf ( ā\na = %d b = %dā, a, b ) ;
}
swapr( int *x, int *y )
{
int t ; t = *x ; *x = *y ; *y = t ;
}
Introduction to Pointers in C
what would be output of the following pointer program
What wound be output of the following c program of function andā¦
View On WordPress













