My issue
My code
#include <stdio.h>
int main(void)
{
int N;
printf("Enter the value:");
scanf("%d",&N);
return 0;
}
Problem Link: START01 Problem - CodeChef
#include <stdio.h>
int main(void)
{
int N;
printf("Enter the value:");
scanf("%d",&N);
return 0;
}
Problem Link: START01 Problem - CodeChef
You are required to take the number from user and print output.But,Here you are printing the string “Enter the value:” and then taking input from user.
You are not even printing the data taken from user
hlo