1.

What will be the output of this program? #include #include int main(int argc,char* argv[]) { int answer; answer=atoi(argv[1])+atoi(argv[2]); printf("%d",answer); return 0; }

A. 50
B. 60
C. 30
Answer» E.


Discussion

No Comment Found