C Programming and Technical Programming Technical

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?

Read Solution (Total 0)

C Other Question

What is the maximum combined length of command line
arguments including the space between adjacent
arguments?
What will be the output of the program?
#include
int main()
{
char ch;
if(ch = printf(""))
printf("It mattersn");
else
printf("It doesn't mattersn");
return 0;
}
Options
1) It matters
2) It doesn't matters
3) matters
4) No output