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 |
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
pascal triangle program
Identify the operators that is not used with pointer a. && b. # c. * d. >>
how can i sort numbers from ascending order and descending order using turbo c..
what is meant by c
WHAT IS LOW LEVEL LANGUAGE?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is restrict keyword in c?
What is wild pointer in c with example?
what does data structure mean?
How do you print only part of a string?
Explain how do you list files in a directory?