#include<stdio.h>
void main()
{
int =1;
printf("%d%d%d",a++,++a,++a);
}
Answer Posted / sravani
i got the answer 1,3,4
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
How do you print only part of a string?
how do you execute a c program in unix.
What is a pointer variable in c language?
What does printf does?
What is a floating point in c?
Why is a semicolon (;) put at the end of every program statement?
Do you have any idea about the use of "auto" keyword?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is LINKED LIST? How can you access the last element in a linked list?
What is a class c rental property?
What is call by reference in functions?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
How can you determine the maximum value that a numeric variable can hold?
What is quick sort in c?