Knowee
Questions
Features
Study Tools

find the output of given code.#include <stdio.h>int main(){int a,b=110,c=20;printf("%d",a=b-=c*=5);return 0;}-1045010110

Question

find the output of given code.#include <stdio.h>int main(){int a,b=110,c=20;printf("%d",a=b-=c*=5);return 0;}-1045010110

🧐 Not the exact question you are looking for?Go ask a question

Solution

The given code is written in C language. Let's break it down:

  1. int a,b=110,c=20; - Here, three integer variables are declared. b is initialized with 110 and c is initialized with 20.

  2. c*=5; - This is a shorthand for c = c * 5;. So, c becomes 100.

  3. b-=c; - This is a shorthand for b = b - c;. So, b becomes 10 (110 - 100).

  4. a=b; - Here, a is assigned the value of b, which is 10.

  5. printf("%d",a); - This will print the value of a, which is 10.

So, the output of the given code will be 10.

This problem has been solved

Similar Questions

What will be the output of the following code?

What will be the output of the following program?

What will be the output of the following C code?

What will be the output of the following C++ code?

What is the output for the following code?Note: This question helps in clearing conceptual technical interviews for service-based companies.

1/4

Upgrade your grade with Knowee

Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.