How many parameters should a function have?


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

Post New Answer

More C Interview Questions

What is identifiers in c with examples?

0 Answers  


How would you sort a linked list?

1 Answers  


What does node * mean?

0 Answers  


What is an example of structure?

0 Answers  


What is scanf_s in c?

0 Answers  






What are the 4 types of functions?

0 Answers  


Process by which one bit pattern in to another by bit wise operation is?

0 Answers   InterGraph,


How are 16- and 32-bit numbers stored?

0 Answers  


When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these

1 Answers   Accenture, IBM,


how to print "hai" in c?

13 Answers   TCS,


how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?

0 Answers  


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(); }

0 Answers   Microsoft,


Categories