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;
}
Answer: D
No answer description available for this question.