Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In C, I want to create a string containing some Xs, some Os, and the rest are all dash '-', with the total length 4.
In C, I want to create a string containing some Xs, some Os, and the rest are all dash '-', with the total length 4.
For example, number of X=2, number of O=1, and I want the string to be 'XXO-'
number of X=1, number of O=0, and I want the string to be 'X---'
number of X=0, number of O=2, and I want the string to be 'OO--'
number of X=0, number of O=0, and I want the string to be '----'
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started