Home C 6. Alice in wonderland 6. Alice in wonderland / July 21, 2017 Code: #include<stdio.h> int main(){ int b,a,c; printf("The bird said:\n"); scanf("%d",&b); a=b%10; c=b/10; printf("Alice must go in path-%d to find her way to home",a+c); return 0; }
No comments