Top

Discussion

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: D

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment