define string ?


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

Post New Answer

More C Interview Questions

Program to find larger of the two numbers without using if-else,while,for,switch

11 Answers   iNautix, Wipro,


fn f(x) { if(x<=0) return; else f(x-1)+x; }

5 Answers   HCL,


Hai what is the different types of versions and their differences

0 Answers  


what is c language.

3 Answers  


Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 5 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.

1 Answers  






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,


What is the main differences between C and Embedded C?

9 Answers  


What is 1d array in c?

0 Answers  


what is the difference between c and java?

1 Answers  


How to convert decimal to binary in C using recursion??

4 Answers   HP, IBM,


The variables are int sum=10,SuM=20; these are same or different?

3 Answers  


can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?

2 Answers  


Categories