C Another pointerExample

Wait What
0





Untitled2.html






#include<stdio.h>
#include<conio.h>
int pointer (int *a);
int main()
{
int a=2;

pointer(&a);
printf("the sum is: %d",a);

}
int pointer (int *b)
{
*b=*b+10;

}




Post a Comment

0Comments
Post a Comment (0)
To Top