In c programming language, how many parameters can be passed to a function ?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }

1 Answers  


What is s or c?

0 Answers  


Explain can the sizeof operator be used to tell the size of an array passed to a function?

0 Answers  


What are compound statements?

0 Answers  


what is unsigened char and what is the difference from char

2 Answers  


What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?

2 Answers   Accenture,


What is Generic pointer? What is the purpose of Generic pointer? Where it is used?

3 Answers  


While(1) { } when this loop get terminate is it a infinite loop?

5 Answers  


Difference between C and Embedded C?

1 Answers  


What is gets() function?

0 Answers  


If input is 123 then how to print 100 and 20 and 3 seperately?

4 Answers  


Categories