how many argument we can pas in in a function
Answer Posted / muthukumar
depending upon requirements we can pass no of arguments in
functions
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is conio h in c?
Is javascript based on c?
What is the right type to use for boolean values in c? Is there a standard type?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
What is the use of header?
explain what is a newline escape sequence?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What does s c mean in text?
Is main a keyword in c?
What is the difference between near, far and huge pointers?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What is data types?
Why main function is special give two reasons?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
What are the different properties of variable number of arguments?