I am using Dev-C++ compiler. I wrote simple C code that does this: Code: #include<stdio.h> int main() { int a,b; scanf("%d",a); b=a; printf("\n %d",b); } and my app. crashes. It pops up a Send Error Report message. What is the problem with the code? Thanks in advance.