C

FIB-ASCII Value

178
0

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;
}
Hephzibai
WRITTEN BY

Hephzibai

Hephzibai is a driven third-year student at St. Joseph's Institute of Technology, specializing in Computer Science and Engineering. With a keen interest in data science and also in fullstack.
One of my greatest strengths lies in my programming skills, which I've honed through countless hours of practice and participation in coding challenges. Platforms like Skillrack, HackerRank, and others have been my playgrounds, where I've tackled a wide range of problems with creativity and determination.

Leave a Reply

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