Please check this code
i have a question. my compiler is not working.thats why i am using online free compiler. so i cant understand properly is my code right or not. so please help me someone. i am posting my code:
#include<stdio.h>
main()
{
int numb_one;
int numb_two;
int ans=numb_one+numb_two;
printf("Put no one:\n");
scanf("%d",numb_one);
printf("Put no two:");
scanf("%d",numb_two);
scanf("%d",ans);
getchar();
return 0;
}