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

Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error

8 Answers   IBM,


Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.

0 Answers  


Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return - 1. The function should not make use of any C library function calls.

3 Answers   Google, Infosys, JTL, OpenFeel,


What are the different types of errors?

0 Answers  


difference between ordinary variable and pointer in C?

2 Answers  






write a program to display the array elements in reverse order in c language

16 Answers  


List some applications of c programming language?

0 Answers  


Explain what header files do I need in order to define the standard library functions I use?

0 Answers  


What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?

0 Answers  


Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.

0 Answers  


What are the types of macro formats?

0 Answers  


What are preprocessor directives?

1 Answers  


Categories