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 union and anonymous union?
Give differences between - new and malloc() , delete and free() ?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Is c still used?
What is a pragma?
Why doesnt this code work?
What are the types of functions in c?
How to establish connection with oracle database software from c language?
Explain low-order bytes.
What is difference between function overloading and operator overloading?
What is operator promotion?
How can you increase the allowable number of simultaneously open files?
write a programming in c to find the sum of all elements in an array through function.
What are the advantages and disadvantages of pointers?
What is data structure in c programming?