1.

Write a c program to accept a set of numbers and -1 denotes the end of input

Answer»

ANSWER:

#include

INT main(){

int a[100];

int i=0;

while(a[i]!=-1)

SCANF("%d",&a[i]);

i++;

}

Explanation:



Discussion

No Comment Found