#include<stdio.h>
int main() {
int t;
scanf("%d",&t);
printf("%d",t);
return 0;
}
I compiled the above c code using Ideone.com and the following warning popped up.
prog.c: In function ‘main’:
prog.c:5: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result
Can some one help me about this? did I do something idiotic?
