Home Print Integers until 10 is encountered byC April 07, 2021 0 Comments #include<stdio.h>int main(){int a;while(scanf("%d",&a)>0){if(a==10)break;elseprintf("%d ",a);}} Share
Post a Comment