Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Console Window Problem - CDT [ C,C++ Plugin]

hi,
i have written one  c program

int main(){
int a;
printf("enter no \n");
scanf("%d",&a);
printf("a=%d",a);
return 0;
}

The expected output is
enter no
somevalue
a=somevalue
but the resultant output in console window is
somevalue
enter no
a=somevalue


whatz wrong with Console window.how to rectify it?



	
		
__________________________________
Do you Yahoo!?
Yahoo! Mail - You care about security. So do we.
http://promotions.yahoo.com/new_mail


Back to the top