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;
}