Write code for atoi(x) where x is hexadecimal string.
Answer Posted / yuusaku
int num;
sscanf(string,"%x",&num);
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
Is there anything like an ifdef for typedefs?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
What is difference between %d and %i in c?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What does c in a circle mean?
can anyone suggest some site name..where i can get some good data structure puzzles???
Explain what is the difference between a string and an array?
Explain a pre-processor and its advantages.
What is a program flowchart?
What are the ways to a null pointer can use in c programming language?
What does return 1 means in c?
Define recursion in c.
What is a pointer variable in c language?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);