3 of 20 The value of the variable character is assignable in the main() function. It is also printable by the statement
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
3 of 20 The value of the variable character is assignable in the main() function. It is also printable by the statement
statement Printf(" the value of %s is: ", temp); in the function void printFunction (char temp). Which of the following statements is incorrect? main() passes character by value the prototype for the function is void printFunction (char); The function can return the value of character to main() It is likely that the value printed by prinunction equals any value assigned by main () to the variable character
3 of 20 The value of the variable character is assignable in the main() function. It is also printable by the