Find the O/p of the following
1)
#include
int main()
{
char c='1';
int j=atoi(c);
}
Answer Posted / vinay
It will execute
| Is This Answer Correct ? | 18 Yes | 5 No |
Post New Answer View All Answers
What are conditional operators in C?
What is difference between scanf and gets?
What is the scope of static variable in c?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
#include
What is the heap in c?
What is void main () in c?
What does %c mean in c?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
Who developed c language?
How can I change the size of the dynamically allocated array?
What is the data segment that is followed by c?
What is the difference between exit() and _exit() function?
Explain how are 16- and 32-bit numbers stored?
Explain main function in c?