My issue
Write a program which does the following Declare an integer variable a Try taking a number from the console and assign it to a Output a to the console in C programming
My code
#include <stdio.h>
int main(void) {
int a=76;
scanf("%d",&a);
printf(" Your number is:%d",a);
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone