What is c++ used for today?
No Answer is Posted For this Question
Be the First to Post Answer
why 'c' is called middle level language.
What is the right type to use for boolean values in c? Is there a standard type?
what are the difference between ANSI C and Let Us c and Turbo C
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; }
Simplify the program segment if X = B then C ← true else C ← false
Describe the header file and its usage in c programming?
What is the difference between text and binary modes?
What is the role of this pointer?
Where static variables are stored in c?
How arrays can be passed to a user defined function
What do you mean by keywords in c?
how to compare two strings without using strcmp() function??