write the value of x and y after execution of the statements:
int x=19,y;
y=x++ + ++x;
x++;
y++;
No Answer is Posted For this Question
Be the First to Post Answer
Given that two int variables, total and amount , have been declared, write a sequence of statements that: initializes total to 0 reads three values into amount , one at a time. After each value is read in to amount , it is added to the value in total (that is, total is incremented by the value in amount ). Instructor's notes: If you use a loop, it must be a for loop. And if you use a loop control variable for counting, you must declare it.
what are the techniques for reducing the fragility of a memory bug?
#include"stdio.h" #include"conio.h" void main() { int a; printf("\n enter a number:"); scanf("%c\n"); getch(); }
What is the code for following o/p * * * * * * * * * * * * * * * *
Write a C program to enter 10 integer numbers through one variable and count how many of them are even using while loop ?
difference between c/c++ programing language? what is necessesity of c++ when existing c programing language?
To generate the series 1+3+5+7+... using C program
full c programming error question based problem
Assume that the int variables i and j have been declared, and that n has been declared and initialized. Write code that causes a "triangle" of asterisks of size n to be output to the screen. Specifically, n lines should be printed out, the first consisting of a single asterisk, the second consisting of two asterisks, the third consistings of three, etc. The last line should consist of n asterisks. Thus, for example, if n has value 3, the output of your code should be * ** *** You should not output any space characters. Hint: Use a for loop nested inside another for loop.
Find the error (2.5*2=5) (a) X=y=z=0.5,2.0-5.75 (b) s=15;
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); }
Given an int variable n that has been initialized to a positive value and, in addition, int variables k and total that have already been declared, use a do...while loop to compute the sum of the cubes of the first n whole numbers, and store this value in total . Thus if n equals 4, your code should put 1*1*1 + 2*2*2 + 3*3*3 + 4*4*4 into total . Use no variables other than n , k , and total .