Is c is a middle level language?


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

Post New Answer

More C Interview Questions

What is const and volatile in c?

0 Answers  


wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }

2 Answers  


Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.

3 Answers   Google,


main difference between c and c++ language

1 Answers  


Given an unsigned integer, find if the number is power of 2?

5 Answers  






how to find sum of digits in C?

21 Answers   CTS, Infosys,


Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?

0 Answers  


What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }

21 Answers   ADITI, Student, TCS,


write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC

2 Answers   HCL,


differentiate built-in functions and user – defined functions.

0 Answers  


What are structural members?

0 Answers  


Explain what does it mean when a pointer is used in an if statement?

0 Answers  


Categories