- 2
Fill in the blank to declare an integer variable and set its value to 5.
__ var = __; I? var = 5; what else needs to go with i? i am completely stumped
19 Réponses
+ 4
static
=
0
int
0
Fill in the blanks to declare an integer variable and print its address in hex format:
int var = 42;
printf("%
x
",
&
var)
0
Fill in the blanks to declare a variable var of type int, enter a value, and store it in the variable var.
int var;
cout << "Please enter a value \n";
cin >> var;
0
? var = ?
ans] int var = 5
0
int var=5;
0
x
&
0
0
Fill in the blanks to declare an integer variable and print its address in hex format:
int var = 42;
printf("%x",&var);
0
_int var _1
- 1
it wasn't but 4 seconds that i realized it was int the entire time xD
- 1
___myVar;
___ >> myVar;
- 1
int
cin
- 1
Fill in the blanks to declare an integer variable and print its address in hex format:
int var = 42;
printf("%
",
&
var)
- 1
INT
5
- 2
int var = 5;
- 2
Fill in the blanks to declare an integer variable x and assign it the value 87.
- 2
to declare a static integer variable and initialize it to the value 1: _____ int var _1;.
- 3
cool thanks