Question

c programming Given the function heading and variables below: void myFunction(int a, char b) int num...

c programming

Given the function heading and variables below:

void myFunction(int a, char b)

int num =10;

char letter = 'Q';

Are the following statements valid or invalid function calls? If not, why?

a. myFunction(num, letter);

b. num = myFunction(num, letter);

c. myFunction(10, 3.14);

d. myFunction(num, '!');

e. printf("%c", myFunction(15, letter, num));

0 0
Add a comment Improve this question Transcribed image text
Answer #1
a. myFunction(num, letter);
valid.

b. num = myFunction(num, letter);
invalid. Because myFunction is not returning anything.

c. myFunction(10, 3.14);
invalid. Because second argument should be of type char.

d. myFunction(num, '!');
valid.

e. printf("%c", myFunction(15, letter, num));
invalid. Because myFunction is not returning anything.
Add a comment
Know the answer?
Add Answer to:
c programming Given the function heading and variables below: void myFunction(int a, char b) int num...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT