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 difference between text and binary modes?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What is meant by high-order and low-order bytes?
Are bit fields portable?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What does == mean in texting?
how should functions be apportioned among source files?
What is volatile variable how do you declare it?
Is flag a keyword in c?
Write a program to print “hello world” without using semicolon?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What are shell structures used for?
What is actual argument?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset