A
Q. What will be output for the following code?
Code:
#include <stdio.h>
int main(int argc, char *argv[])
{
printf(""%s
"", argv[argc]);
return 0;
}
int main(int argc, char *argv[])
{
printf(""%s
"", argv[argc]);
return 0;
}
- Correct Answer - Option(D)
- Views: 20
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.