I am currently doing C programming in the terminal of nano text editor in kali linux 2020.x.
15 minutes ago, I wrote a code which is not working finely. I am mentioning that code.
#include<stdio.h>
int main(){
int num;
scanf("%d",&num);
printf("number is %d",num);
return 0;
}
I ran it. all things were ok, it compiled also, but when I am trying to enter value and press enter key, the output is blank/no output.