Why c is called procedure oriented language?


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

Post New Answer

More C Interview Questions

main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }

8 Answers   Vector,


write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?

2 Answers   Zensar,


how many times of error occur in C

11 Answers  


What are the c keywords?

0 Answers  


where are auto variables stored? What are the characteristics of an auto variable?

0 Answers  


program for swapping two strings by using pointers in c language

1 Answers  


What is structure in c language?

0 Answers  


where do we use volatile keyword?

1 Answers  


Which header file should you include if you are to develop a function which can accept variable number of arguments?

0 Answers   TCS, TISL,


What is indirection in c?

0 Answers  


What is a macro, and explain how do you use it?

0 Answers  


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

0 Answers   Wilco,


Categories