Answer Posted / thunder
Using argument vector and argument count with main.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is the size of enum in c?
When should a far pointer be used?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Why functions are used in c?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
swap 2 numbers without using third variable?
Is javascript based on c?
Explain void pointer?
What is #include conio h?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Explain how do you determine the length of a string value that was stored in a variable?
Why we not create function inside function.
What is dynamic memory allocation?