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 enumerated data type in c?
What standard functions are available to manipulate strings?
What are the types of type qualifiers in c?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Explain union. What are its advantages?
What is call by reference in functions?
simple program of graphics and their output display
What does it mean when the linker says that _end is undefined?
What math functions are available for integers? For floating point?
What is the use of #include in c?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
Can you please explain the difference between malloc() and calloc() function?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
What is calloc() function?
Is that possible to add pointers to each other?