Is c procedural or object oriented?


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

Post New Answer

More C Interview Questions

How does variable declaration affect memory?

1 Answers  


why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above

0 Answers  


Why c is known as a mother language?

0 Answers  


How can I make sure that my program is the only one accessing a file?

0 Answers  


Input any no. and print all the the numbers that comes before it like this for e.g input = 4 0 01 012 0123 01234 plz answer it 2day

3 Answers  


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300

4 Answers   Tieto,


write a prgram of swapping with 2 valiables

6 Answers  


How do you view the path?

0 Answers  


How will you declare an array of three function pointers where each function receives two ints and returns a float?

0 Answers   TISL,


How can you determine the maximum value that a numeric variable can hold?

0 Answers  


How to write a program to receive an integer & find its octal equivalent by using for loop?

1 Answers   Google,


What is the usage of the pointer in c?

0 Answers  


Categories