main()
{
int i=400,j=300;
printf("%d..%d");
}
Answer Posted / preshit
output will b garbage value
because no variables are passed in last sentence.
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
How can you increase the size of a statically allocated array?
What is null in c?
What is the size of structure pointer in c?
For what purpose null pointer used?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
difference between native and cross compilers
How do I create a directory? How do I remove a directory (and its contents)?
What are the storage classes 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.
What is non linear data structure in c?
How can I do peek and poke in c?
Why clrscr is used in c?
Explain what are multibyte characters?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Tell me with an example the self-referential structure?