Hi friends,,

I'm new in c programming
need your help,,
I just do a simple mathematics calculation

#include<stdio. h>
void main()
{
int no,x;
clrscr();

printf("Enter numbor : ");
scanf("%d", &no);

x=no*3000;
printf("%d", x);
getch();
}

if I put 30, the output that...