Saved Bookmarks
| 1. |
Write a c program to accept a set of numbers and -1 denotes the end of input |
|
Answer» #include INT main(){ int a[100]; int i=0; while(a[i]!=-1) SCANF("%d",&a[i]); i++; } Explanation: |
|