how can I convert a string to a number?
No Answer is Posted For this Question
Be the First to Post Answer
Why we use void main in c?
WHO WROTE C LANGUAGE?
what is mean by Garbage collection ? Please answer me. Advance thanks.
What is #define?
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
What is the c value paradox and how is it explained?
What is the difference between ‘g’ and “g” in C?
What does the c preprocessor do?
Write a program in c to input a 5 digit number and print it in words.
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }