What would be the output of the following program?
/* sample.c */
main ( int argc, char **argv )
{
argc = argc - (argc -1);
printf ("%s", argv[argc - 1]);
}5
886 5b5cc7dde4d2b419777515d0
Q: What would be the output of the following program? /* sample.c */ main ( int argc, char **argv ) { argc = argc - (argc -1); printf ("%s", argv[argc - 1]); }
- Show Answer
- Workspace
- Discuss