void main(int argc,char *argv[],char *env[])
{
int i;
for(i=1;i<argc;i++)
printf("%s",env[i]);
}
Answer Posted / msrambabu
i need answer and explation to env function
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is the difference between #include
What is switch in c?
How the c program is executed?
Why main is used in c?
is it possible to create your own header files?
What is a MAC Address?
Differentiate between new and malloc(), delete and free() ?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
Why is python slower than c?
Is main is a keyword in c?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
Explain what is a const pointer?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What type of function is main ()?