Find the O/p of the following
1)
#include
int main()
{
char c='1';
int j=atoi(c);
}
Answer Posted / arka sen
it will give the ASCII Value of char C.
| Is This Answer Correct ? | 10 Yes | 6 No |
Post New Answer View All Answers
What is the difference between test design and test case design?
Why is c called a structured programming language?
What do you mean by command line argument?
What is #include stdio h?
Is file a keyword in c?
What is cohesion and coupling in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Who developed c language and when?
The difference between printf and fprintf is ?
What is the difference between Printf(..) and sprint(...) ?
Explain the concept and use of type void.
How can I sort a linked list?
What is the scope of static variable in c?
How can I determine whether a machines byte order is big-endian or little-endian?
What is array of pointers to string?