int main(int count,char *argli char *argvect[]){
int i=0;
while(argvect[i]) {
printf("\n%s",argvect[i]);
i++;
}
return 0;
}
Select one:
a. Compiler error
b. Runtime error
c. Give system detail
d. None of these
Answers
Answered by
1
Answer:
a. compiler error is right
Similar questions