Where is c used?


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

Post New Answer

More C Interview Questions

enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program

1 Answers  


enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?

4 Answers   TCS,


What are the different types of C instructions?

0 Answers   InterGraph,


while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above

0 Answers  


Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.

0 Answers  






What is true about the following C Functions a.Need not return any value b.Should always return an integer c.Should always return a float d.Should always return more than one value.

11 Answers   TCS,


How many types of operators are there in c?

0 Answers  


Explain how can a program be made to print the line number where an error occurs?

0 Answers  


Why pointers are used?

0 Answers  


What are keywords c?

0 Answers  


How can I swap two values without using a temporary?

0 Answers  


program that accepts amount in figures and print that in words

2 Answers   Infosys, Lovely Professional University, Wipro,


Categories