main()
{
int a = 65;
printf(“%d %o %x”,a,a,a);
}
Output
65 101 41
Please explain me.How it is coming like that?
Answer Posted / neha
It prints the value of in decimal, octal, hexadecimal
format respectively.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Is c call by value?
Why we not create function inside function.
Does c have class?
What do you mean by dynamic memory allocation in c? What functions are used?
Explain a file operation in C with an example.
Explain how can I open a file so that other programs can update it at the same time?
What is a function in c?
When do we get logical errors?
Write a program to swap two numbers without using third variable?
Sir i need notes for structure,functions,pointers in c language can you help me please
Why is structure padding done in c?
Why functions are used in c?
What is the advantage of using #define to declare a constant?