skip to main |
skip to sidebar
Simple program
#include<stdio.h>
#include<conio.h>
void main()
{
void show(int);
int a;
clrscr();
printf("Enter a number");
scanf("%d",&a);
show(a);
getch();
}
void show(int x)
{
printf("U entered=%d\n",x);
}
OUTPUT:
Enter a number5
U entered=5
No comments:
Post a Comment