Question

Given the following code: int x = 0; int y = 10; int *ptr = &x;...

Given the following code:

int x = 0;
int y = 10;
int *ptr = &x;
*ptr = -55;
x += -52;
ptr = &y;
*ptr += 52;
printf("%d\n", x);

What is printed to the screen?

Homework Answers

Answer #1

Explanation :

It will print -107, as *ptr contains the address of x.

first time x = 0

then ptr which contains the address of x is found value -55

after that x also become -55

now x += -52, taking the value of x to -107

C Program:

#include <stdio.h>

int main()
{
    int x = 0;
    int y = 10;
    int *ptr = &x;
    *ptr = -55;
    x += -52;
    ptr = &y;
    *ptr += 52;
    printf("%d\n", x);

    return 0;
}

Output:

Thumbs Up Please !!!

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Considering the following code fragment: #include<stdio.h> #include <stdlib.h> int base = 0; static int bonus; int*...
Considering the following code fragment: #include<stdio.h> #include <stdlib.h> int base = 0; static int bonus; int* demage (int dmg) { int* ptr = (int*) malloc(sizeof(int)); static int constant = 1;   *ptr = dmg + constant; return ptr; } int main() { int HP = 0; int* dm; base = 30; bonus = 20; for(int i=1; i<4; i++) { HP += i * base; } dm = demage(10); HP += bonus - *dm; printf("Total HP: %i", HP); return 0; } Please...
Given the following while loop, rewrite it as a for loop. int x = 0; while(x...
Given the following while loop, rewrite it as a for loop. int x = 0; while(x < 10) {      printf("%d\n", x);      x++; }
A program is already given to you.  There are five problems in this skeleton version of the...
A program is already given to you.  There are five problems in this skeleton version of the program, each is 10 points. All you got to do is complete the missing code in each function. What the function does is clearly stated in the name of the function.   // ASSIGNMENT ON FUNCTIONS #include <stdio.h> // Problem 1: Compile with gcc func_assignment.c -Wall // There are some warnings because there is a mismatch between // data type passed and defined. // Find...
Given the following function in C++: int main(void) { int a = 2; int b =...
Given the following function in C++: int main(void) { int a = 2; int b = myFunction(a); a = b + 1; b = myFunction(a); cout << ”b = ” << b << endl; return 0; } int z = myFunction(int x) { static int n = 0; n = n + 1; int z = x + n; return z; } What is printed by the cout on the screen?
Let us discuss the following code and determine the outoput. #include <stdio.h> int main() { int...
Let us discuss the following code and determine the outoput. #include <stdio.h> int main() { int a=10; //normal variable int *ptr_a; //pointer variable ptr_a = &a; int **ptr_ptra; //pointer to pointer ptr_ptra = &ptr_a; printf("value of a: %d\n",a); printf("value of a using pointer: %d\n",*ptr_a); printf("value of a using pointer to pointer: %d\n",**ptr_ptra); return 0; }
C PROGRAMMING LANGUAGE The following code written in C programming language was run and displays 997705320....
C PROGRAMMING LANGUAGE The following code written in C programming language was run and displays 997705320. Explain why and how this program outputs this number. int main(void) { int a = 5, b =20; int* ptr = &a; int** ptr2 = &ptr; printf("%d\n", ((int)*ptr * (int)*ptr2)); return 0; }
what is the output from the following code? int number=10; int* ptr = &number; number+=10; cout<<*ptr;
what is the output from the following code? int number=10; int* ptr = &number; number+=10; cout<<*ptr;
Please find the errors of the following code a) int x[5]; int k = 10; for...
Please find the errors of the following code a) int x[5]; int k = 10; for (k = 0; k <= 5; k++) { x[k] = k -1; } b) int x[5]; for (k = 1; k <= 5; k++) { cout << x[k-1] << endl; } c) int x[5]={1,2,3,4,5}, y[5]; y = x; for (k = 0; k < 5; k++) { cout << y[k] << endl; } d) int size; cin >> size; int myArr[size];
1. Identify and correct the errors in each of the following statements: a) for (a =...
1. Identify and correct the errors in each of the following statements: a) for (a = 25, a <= 1, a--); {printf("%d\n", a);} b) The following code should print whether a given integer is odd or even: switch (value) {case (value % 2 == 0):puts("Even integer");case (value % 2 != 0):puts("Odd integer");} c) The following code should calculate incremented salary after 10 years: for (int year = 1; year <= 10; ++year) {double salary += salary * 0.05;}printf("%4u%21.2f\n", year, salary);...
Construct a flowchart based on this code and write its equivalent algorithms. #include <stdio.h> int main()...
Construct a flowchart based on this code and write its equivalent algorithms. #include <stdio.h> int main() { int x,y; float result; char ch; //to store operator choice printf("Enter first number: "); scanf("%d",&x); printf("Enter second number: "); scanf("%d",&y); printf("Choose operation to perform (+,-,*,/): "); scanf(" %c",&ch); result=0; switch(ch) { case '+': result=x+y; break; case '-': result=x-y; break; case '*': result=x*y; break; case '/': result=(float)x/(float)y; break; case '%': result=x%y; break; default: printf("Invalid operation.\n"); } printf("Result: %d %c %d = %.2f\n",x,ch,y,result); // Directly...