Explain command-line arguments in C.
Answer / nashiinformaticssolutions
Command-line arguments are passed to the main() function as argc (argument count) and argv (argument vector).
| Is This Answer Correct ? | 0 Yes | 0 No |
Is flag a keyword in c?
How to calculate Total working time using Login and logout?
2 Answers CTS, Cygnus, Infosys, Signal Networks, TCS, Wipro,
What do you mean by dynamic memory allocation in c?
What is a Genralised LInked List?? Please give a detailed explation of it..
difference of two no's with out using - operator
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
What are the application of c?
What is the difference between void main() and int main()?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
Why is c called c?
what are the different storage classes in c?
What is pivot in c?