What is meant by int main ()?
No Answer is Posted For this Question
Be the First to Post Answer
How can I return multiple values from a function?
What is integer constants?
Differentiate abs() function from fabs() function.
Why cd or dvd are round why not square.
What is the use of volatile?
Define function ?Explain about arguments?
2 Answers Geometric Software, Infosys,
what is the function of .h in #include<stdio.h> in c ?
23 Answers HCL, IBM, Wipro,
Is it possible to execute code even after the program exits the main() function?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
Explain what is wrong with this program statement? Void = 10;
What is 1d array in 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; }