Why C language is a procedural language?


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

Post New Answer

More C Interview Questions

What are directives in c?

0 Answers  


Where are local variables stored in c?

0 Answers  


what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }

6 Answers   Microsoft,


main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?

9 Answers   Ramco,


What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }

5 Answers   Amazon, Qualcomm,


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

0 Answers   TCS, TISL,


pascal triangle program

2 Answers  


How do you define structure?

0 Answers  


main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }

4 Answers  


What is clrscr ()?

0 Answers  


What is the use of structure padding in c?

0 Answers  


What is static function in c?

0 Answers  


Categories