WHAT WILL BE THE OUTPUT OF THE FOLLOWING QUESTION
void main()
{
int x=4,y=3,z;
z=x-- -y;
printf("%d%d%d",x,y,z);
}
Answers were Sorted based on User's Feedback
Answer / arunkumar
it will be 3,3,1
no doubt it is the correcct one..
if anybody have a doubt compile and execute it with turbo c.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / jasmeet singh
hey i typed the output of x=4 but its 3. coz after the
decrement now its value is 3.
| Is This Answer Correct ? | 4 Yes | 5 No |
Answer / ramya b.m
The output will be 3 3 1. initially the value of x is 4 and
subtracting it with value of y which is 3 the difference is
1. while printing the value of x is decremented by 1 and
hence the output 3 3 1.
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / tommy tom
331
x = 4-- = 3
y = 3
z = 1
then, when printing, there are no spaces in the "%d%d%d" format string, thus there are no spaces in the printing of the numbers. Also, at the end of the run, the command prompt will be tacked onto the end of the output, as the format string contains no newlines, line returns, or other reasons to assume a nice printing.
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / guru1985
#include<stdio.h>
#include<conio.h>
void main()
{
int x=4,y=3,z;
z=x-- -y;
printf("x=%d\ny=%d\nz=%d",x,y,z);
}
Output=>
x=3
y=3
z=1
| Is This Answer Correct ? | 0 Yes | 3 No |
A sample program using data structure? what is file handling?
Given that two int variables, total and amount, have been declared, write a loop that reads integers into amount and adds all the non-negative values into total. The loop terminates when a value less than 0 is read into amount. Don't forget to initialize total to 0. Instructor's notes: This problem requires either a while or a do-while loop.
#include<stdio.h> void main() { int i=1; printf("%d%d%d",i++,++i,i); }
What is the code for following o/p * * * * * * * * * * * * * * * *
I'm having trouble with coming up with the correct code. Thank You!! The assignment was to write a program using string functions that accepts a price of an item and displays its coded value. The base of the keys: X C O M P U T E R S 0 1 2 3 4 5 6 7 8 9 Sample I/O Dialogue: Enter Price: 489.50 Coded Value: PRS.UX
difference between c/c++ programing language? what is necessesity of c++ when existing c programing language?
Why are memory errors hard to debug?
what is meant for variable not found?
what is the large sustained error signal that eventually cause the controller output to drive to its limit
I can not get my C++ program to work right. It is supposed to tell if a word is a palindrome or not, but it only tells thet the word is not a palindrome. And I can't fix it.
Given an int variable n that has already been declared and initialized to a positive value, and another int variable j that has already been declared, use a do...while loop to print a single line consisting of n asterisks. Thus if n contains 5, five asterisks will be printed. Use no variables other than n and j .
#include<>stdio.h> #include<>conio.h> { printf("hello"); void main() getch(); } what the out put of this program and why ......plz clear my answer