FIB-ASCII Value

The program must accept a positive integer N representing an ASCII value as the input. The program must print the character equivalent of the N as the output. Fill in the missing lines of code so that the program runs successfully.

#include <stdio.h>
#include <stdlib.h>
int main()
{
___ N;
scanf(_______);
printf(_____,N);
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main()
{
int N;
scanf("%d", &N);
printf("%c",N);
return 0;
}

Leave a Reply

Your email address will not be published. Required fields are marked *

More posts. You may also be interested in.