C Programming and Technical Programming Output

What is the maximum combined length of command line
arguments including the space between adjacent
arguments?

Read Solution (Total 1)

C Other Question

Assuming a integer 2-bytes, What will be the output of the program?
#include

int main()
{
printf("%xn", -1<<3);
return 0;
}
Options
1) ffff
2) fff8
3) 0
4) -1
If we want that any wildcard characters in the command
line arguments should be appropriately expanded, are we
required to make any special provision? If yes, which?