Help me in solving START01 problem

My issue

I am not able to get the output for this program

My code

#include<stdio.h>
void main()
{
    int n;
    printf("Enter a number: \n");
    scanf("%d",&n);
    printf("Your Entered number is: %d",n);
    return 0;
}

Learning course: Basic programming & Data structures
Problem Link: Number Mirror Practice Problem in Basic programming & Data structures - CodeChef

the output of this program is the number that you have entered like :->
If you have enter n=6
then in output, you will get 6 as the Answer.

Please remove void main() from 2nd line of program and write instead int main().

These program doesn’t need the “Enter input” or “entered number” etc type of phrases just take the input and produce output you dont need these english phrases
good luck

in this program we will use two function first is printf to print a integer value and second is scanf to scan give value (%d) use for gating integer output ,

as example if i take n=9 then it’s scan 9 and print a integer
9 iin output.