What language is windows 1.0 written?


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

Post New Answer

More C Interview Questions

What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }

2 Answers  


if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item

2 Answers  


Difference between fopen() and open()?

3 Answers   Aricent,


Can you define which header file to include at compile time?

0 Answers   Aspire, Infogain,


what is the difference between getch() and getchar()?

10 Answers   Huawei, Infosys,






What is strcpy() function?

0 Answers  


What is spark map function?

0 Answers  


write a c program to accept a given integer value and print its value in words

4 Answers   Vernalis, Vernalis Systems,


Explain what is wrong in this statement?

0 Answers  


What is the collection of communication lines and routers called?

0 Answers  


Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.

0 Answers  


What is a memory leak? How to avoid it?

1 Answers  


Categories