Why c is a procedural language?


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

Post New Answer

More C Interview Questions

Do you know the difference between malloc() and calloc() function?

0 Answers  


What is the difference between fread and fwrite function?

0 Answers  


What is difference between structure and union in c programming?

0 Answers  


What is your stream meaning?

0 Answers  


In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }

1 Answers  


int *a[5] refers to

12 Answers   TCS,


how to add our own function in c library please give details.?

1 Answers   TCS,


int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

0 Answers  


What is the use of ?

0 Answers  


what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above

3 Answers   Accenture, Infosys, Wipro,


void main() { int a=1; while(a++<=1) while(a++<=2); }

4 Answers   HCL,


How does variable declaration affect memory?

1 Answers  


Categories