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
What is the size of a union variable?
Explain what is the advantage of a random access file?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
How many types of arrays are there in c?
What is the use of extern in c?
Are pointers integers in c?
Explain what is the difference between a free-standing and a hosted environment?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
What is the use of getchar functions?
How can I dynamically allocate arrays?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What is f'n in math?
What does *p++ do? What does it point to?
what is the function of pragma directive in c?