Answer:
Yes I do honestly : )
What about you ??
Explanation:
Hope this helped : ) 
Since I was the first one may i have brainiest : )
 
        
             
        
        
        
"Sleeping is an effect of <span>Depressants, but agitation may cause a person to wake up"</span><span />
        
                    
             
        
        
        
Answer:
- #include  <iostream>
 - using namespace std;
 - int main() {
 - int number =5;
 - if (number>=0&& number <=100){
 -     cout<<"passed.\n";
 - }
 - else{
 -     cout<<"failed.\n";
 - }
 - return 0;
 - }
 
Explanation:
There where multiple errors in the code given in the questions
Line 1: Missing <iostream>
Line 5: The comparison operator was wrong correction is highlighted
Line 12 Missing closing brace for the main function
All the errors have been fixed and the code above compiles
 
        
             
        
        
        
1100110-101101 = 111001 = 57
 
        
                    
             
        
        
        
Answer: Parameters
Explanation:
Whenever a call to a recursive function is made, then the function has its own code and its own set of parameters with local variables. These parameters are within the scope of the recursive function. For example while finding the factorial of a number we are given the function with parameter such as int recursive(int n) where int n is a parameter passed into the function.