Describe how arrays can be passed to a user defined function


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

Post New Answer

More C Interview Questions

what is the use of macro program

1 Answers   TCS,


What are the features of the c language?

0 Answers  


i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


What is #define?

0 Answers  


What is data type long in c?

0 Answers  






What is function prototype?

0 Answers  


What is variable in c with example?

1 Answers  


how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"

1 Answers  


Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.

8 Answers  


Explain how do you convert strings to numbers in c?

0 Answers  


main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?

10 Answers   Ramco,


write program on arrays

3 Answers   GE, Polycab,


Categories