Answer:
#include <bits/stdc++.h>
using namespace std;
void funct(){
string name;
cout<<"enter the string: ";
cin>>name;
reverse(name.begin(), name.end());
cout<<"The string is : "<<name<<endl;
}
int main()
{
funct();
return 0;
}
Explanation:
create the function funct() with return type void and declare the variable type string and print a message for asking to used enter the string.
The string enter by user is store in the variable using cin instruction.
after that, we use a inbuilt function reverse() which takes two argument.
firs argument tell the starting point and second index tell the ending point. then, the reverse function reverse the string.
name.begin() it is a function which return the pointer of first character of string.
name.end() it is a function which return the pointer of last character of the string.
finally, print the reverse string.
for calling the function, we have to create the main function and then call the function.
Yea, I don’t think you can fix it unless you backed it up or something somehow...
Answer:
typing, commands, scrolling. hope this helps
Answer: SCSI hard drive.
Explanation:
SCSI means Small Computer System Interface.
It is a fast bus with the capacity to connect a number of devices to a computer system simultaneously, those devices includes printer, scanners, tape drives, hard drives, CD-ROM devices. SCSI helps to connect devices and transfer data in between computer and ancillary devices.
SCSI was invented by the American National Standard Institutes (ANSI)
Common Components of SCSI includes;
• Target.
• Expander.
• Service delivery.
• Initiator.
• Sub system.
Answer:
?>
Explanation:
The statement terminator for PHP language is ?>
PHP i.e. Hypertext Preprocessor.
It is widely used open source general purpose scripting language that is especially suited for web development and can be embedded into HTML.
PHP opening and closing tags are <? and ?> respectively.
hope you got the point any question can be asked in comments will be answered duly.