InterviewSolution
Saved Bookmarks
| 1. |
• To check whether the accepted integer is multiple of 3 or multiple of |
| Answer» INT a;PRINTF("enter the NUMBER:");SCANF("%d",&a);if(a%3==0)printf("it is divisible by 3");elseprintf("not divisible");EXPLANATION:if it is divisible by 3 then it is accepted | |