How can a string be converted to a number?


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

Post New Answer

More C Interview Questions

What are integer variable, floating-point variable and character variable?

0 Answers  


class foo { public: static int func(const char*& p) const; }; This is illegal, why?

8 Answers   Google,


What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


What will happen when freeing memory twice

2 Answers  


What is NULL pointer?

0 Answers   Infosys,






I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.

0 Answers   Oracle,


char *p="name"; printf(p);

1 Answers  


Write a program to accept a character & display its corrosponding ASCII value & vice versa?

9 Answers  


4. main() { int c=- -2; printf("c=%d",c); }

0 Answers  


main() { int a[10]; printf("%d",*a+1-*a+3); }

2 Answers  


Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10

8 Answers   Aspire,


What are void pointers in c?

0 Answers  


Categories