Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.
C program to find 2 Digit Number
Profile Answers by vidyanishant Questions by vidyanishant
Questions by vidyanishant
Editorial / Best Answer
Piyush DixitProfile Answers by Piyush Dixit Questions by Piyush Dixit
main()
{
int num,sum,i;
for(num=10;num<100;num++)
{
if(num==3*(num%10+num/10))
{
printf("%d",num);
}
}
}
Related Answered Questions
Related Open Questions