1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Licemer1 [7]
3 years ago
14

. what action does the following a default operator perform? int a, b, c; a = b + c;

Computers and Technology
1 answer:
PIT_PIT [208]3 years ago
4 0

Answer:

The code defines 3 integers a, b and c, then defines a as the sum of b and c.

Explanation:

In the programming language C int data type is used to declare an integer variable, that is, it can store only both negative or positive integers. I will leave a complete example about it:

#include <conio.h>

#include <stdio.h>

int main()

{

   int a, b, c;

   printf( "\n   Introduce first integer (entero): " );

   scanf( "%d", &b );

   printf( "\n   Introduce second integer (entero): " );

   scanf( "%d", &c );

   a = b + c;

 

   printf( "\n   The sum is: %d", a );

 

   getch(); /* Pause */

   return 0;

}

   

You might be interested in
The index number of a combobox object can be assigned to a(n) ____ data type variable
postnew [5]
A signed integer is the best option. In some systems, the value -1 can indicate that no combobox item is selected, so you need to allow for negative values.
4 0
3 years ago
HELPPP
Westkost [7]

Answer:

D. 30 or more

Explanation:

All other ones are canceled out ad the score adds 10.

7 0
3 years ago
Why did my typing suddenly become delayed, but then went back to normal a few minutes later. Is this spyware or smth?
Murljashka [212]

Answer:

Socratic app

Explanation:

it will help you

7 0
3 years ago
What is the relationship between the binary number system and computer hardware?
lesya692 [45]

Answer: is the method of representing numbers that count by using combinations of only two numerals.

Explanation:

5 0
3 years ago
When you create a linked object using the object dialog box, you must click the?
grin007 [14]
Link to the object using the object dialog box then you can click the link
4 0
3 years ago
Other questions:
  • Is the protocol that specifies how web browsers and servers communicate.?
    11·1 answer
  • Networks provide businesses with these benefits.
    8·1 answer
  • Imagine you had a learning problem with an instance space of points on the plane and a target function that you knew took the fo
    11·1 answer
  • 1. when is it a good idea to use lossless compression
    8·1 answer
  • Write a program that prompts the user for the name of two files each containing a single line that represents a decimal integerc
    11·1 answer
  • Import java.util.ArrayList;
    14·1 answer
  • Why do ineed to upgrade to see answers isnt it enough adds
    15·2 answers
  • G i r l s o n l y j o i n <br> id= ons jcuv jke
    13·2 answers
  • Plz help
    10·1 answer
  • In a DTP project, Fiona is looking for a way to make a page layout attractive to readers. Help Fiona pick the correct word to co
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!