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 |
Derive the complexity expression for AVL tree?
What is the difference between functions abs() and fabs()?
What is c system32 taskhostw exe?
write a recursive program in'c'to find whether a given five digit number is a palindrome or not
Is printf a keyword?
Explain what is the difference between the expression '++a' and 'a++'?
main() { int a; a=++100; printf("%d",a); getch(); }
write a program for 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 4 4
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
Does sprintf put null character?
logic for x=y^n
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }