0
Fill in the blanks to print "it works!" on the screen, type in the function prototype before its call.
void (); int main() { some_func(); return 0; } some_func() { cout << "it works!" << endl;
11 ответов
+ 5
#include <iostream>
using namespace std;
void some_func();
int main()
{
  some_func();
  return 0;
}
  
 
void some_func() {
  cout << "it works!" << endl;
 }
0
void 
  
some_func
 
();
int main()
{
  some_func();
  return 0;
}
  
void
 
 some_func() {
  cout << "it works!" << endl;
}
0
A014339270
0
answear is some_func and void. God Jesus Bless.
0
union passport {
  int id_num;
  char text[20];
};
void show(
 
union
 
 passport p) {
  printf("ID is %d", 
 
p
 
.id_num);
}
0
Fill in the blanks to declare a function taking a union parameter and printing the value of the id_num member.
union passport {
  int id_num;
  char text[20];
};
void show(
 
union
 
 passport p) {
  printf("ID is %d", 
 
p
 
.id_num);
}
0
function myFunction($a, $b) {
  echo $a * $b;
}
0
Fill in the blanks to print "it works!" on the screen, type in the function prototype before its call.
Answer:
void ();
int main()
{
  some_func();
  return 0;
}
0
some_func & void
0
this
mem
- 1
Fill in the blanks to declare a function myFunction, taking two parameters and printing the product of their multiplication to the screen.













