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 |
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
write a program that explain #define and # undef directive
What is the size of array float a(10)?
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
will u please send me the placement papers to my mail???????????????????
Why can’t we compare structures?
What is c++ used for today?
What is quick sort in c?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
What are dangling pointers in c?
how the compiler treats any volatile variable?Explain with example.