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

#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain &#1567;&#1567;&#1567;

4 Answers  


what is the difference between while and do while?

2 Answers  


4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.

0 Answers   TCS,


Do pointers store the address of value or the actual value of a variable?

0 Answers   Fidelity,


Does c have an equivalent to pascals with statement?

0 Answers  






What is volatile variable in c?

0 Answers  


Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...

2 Answers  


What does extern mean in a function declaration?

4 Answers  


what r callback function?

1 Answers  


Why string is used in c?

0 Answers  


When should structures be passed by values or by references?

0 Answers   Adobe,


Write a program for the following series? 1 121 12321 1234321 123454321 12345654321 1234567654321 123456787654321 12345678987654321 1234567890987654321 123456789010987654321 12345678901210987654321 1234567890123210987654321 .........1234321............ ..........123454321............ ..........12345654321............ 7 8 9 0 1 Pls............?

5 Answers  


Categories