What is function definition in c?


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

Post New Answer

More C Interview Questions

how many key words availabel in c a) 28 b) 31 c) 32

0 Answers  


Is array a primitive data type in c?

0 Answers  


Is an array parameter is always "by reference" ?

1 Answers  


What is sizeof array in c?

0 Answers  


Rapunzel walks into the forest of forgetfullness. She meets a Lion who lies on Monday Tuesdays and Wednesdays and meets a rabbit who lies on Thurs fridays and saturdays . On that day both say that "I lied yesterday". What day is it .

3 Answers   TCS,


Are the variables argc and argv are always local to main?

0 Answers  


What is console in c language?

0 Answers  


Explain the properties of union. What is the size of a union variable

0 Answers  


#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


using for loop sum 2 number of any 4 digit number in c language

0 Answers  


what is pointer ? what is the use of pointer?

6 Answers   Infosys,


int *a[5] refers to

12 Answers   TCS,


Categories