Explain how do you convert strings to numbers in c?


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

Post New Answer

More C Interview Questions

What are the disadvantages of c language?

0 Answers  


what is the use of fflush() function?

2 Answers  


Explain null pointer.

0 Answers  


write a method for an array in which it can display the largest n next largest value.

1 Answers   Value Labs,


Why isn't it being handled properly?

0 Answers  






What is the relation between # and include<stdio.h>

5 Answers   HCL,


What is scope of variable in c?

0 Answers  


how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");

9 Answers   TCS,


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  


Write the syntax and purpose of a switch statement in C.

0 Answers   Adobe,


what is real time system?what is the differance between hard and soft real time systems

2 Answers  


What is typedef?

1 Answers  


Categories