Why c is procedure oriented?



Why c is procedure oriented?..

Answer / Jagpal Singh

C was designed to be a procedural programming language, with functions being the primary building blocks. It does not support object-oriented features like classes and inheritance.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is the difference between typeof(foo) and myFoo.GetType()?

2 Answers   Synergy,


Function to find the given number is a power of 2 or not?

20 Answers   Motorola, nvidia,


There is a 100-story building and you are given two eggs. The eggs (and the building) have an interesting property that if you throw the egg from a floor number less than X, it will not break. And it will always brake if the floor number is equal or greater than X. Assuming that you can reuse the eggs which didn't broke; you got to find X in a minimal number of throws. Give an algorithm to find X in minimal number of throws.

5 Answers   Yahoo,


Why cd or dvd are round why not square.

1 Answers  


Bit swapping

2 Answers  


what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;

2 Answers   Google,


What are the advantage of c language?

1 Answers  


what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }

3 Answers  


give an example of type casting by a simple c program

2 Answers   TCS,


What is the difference between declaring a variable and defining a variable?

1 Answers  


Explain the Difference between the New and Malloc keyword.

1 Answers   InterGraph,


/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }

1 Answers   CDAC,


Categories