What is C language ?


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

Post New Answer

More C Interview Questions

What is null pointer in c?

0 Answers  


how to get starting address of a running C program

3 Answers  


size maximum allocated by calloc()

3 Answers   DELL,


How do you list a file’s date and time?

0 Answers  


What are pointers? What are different types of pointers?

0 Answers   Fidelity,






What is sizeof int in c?

0 Answers  


What is the difference between declaring a variable by constant keyword and #define ing that variable?

1 Answers  


How can I insert or delete a line (or record) in the middle of a file?

0 Answers  


PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE

0 Answers  


What are types of preprocessor in c?

0 Answers  


Explain what are multibyte characters?

0 Answers  


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  


Categories