a. Function accepts no parameter and does not return any value
b. Function accepts parameter but does not return any value
c. Function accepts parameter but returns value
d. Function accepts parameter and returns value
#include<stdio.h>
int main()
{
int i;
char c;
printf("Enter a number that you can print in alphwat");
scanf("%d", &i);
c= i+64;
printf("The alphbet is %c\n", c);
return 0;
}
0 Comments