Answer:
#include <bits/stdc++.h>//header file which includes most of the libraries..
using namespace std;
int main() {
char st[500];//character array of length 500..
cin.getline(st,499);//taking input of the text.
for(int i=0;st[i];i++)
{
if((st[i]=='.')&& (i!=strlen(st)-1))//condition
{
st[i+1]= toupper(st[i+1]);//converting to upper case.
}
}
cout<<st<<endl;//printing the string..
return 0;
}
Input:
i am .the .great .gambler.i am going gamble everything
Output:
i am .The .Great .Gambler.I am going gamble everything
Explanation:
I have taken a character array of size 500.
Taking input as a line.
If full stop encounters then converting the character to uppercase if it exists.
Printing the output.
The name of the domain controller database that Windows Server 2016 uses to store data about user access and resources on the network is Active Directory.
This Microsoft product manages permissions and access to networked resources. The main service in Active Directory is Domain Services (AD DS), which stores directory information and handles the interaction of the user with the domain.
A misfire code is a type A diagnostic trouble code.
A type A misfire indicates impending catalyst damage and is the most serious type of misfire condition. If this type of misfire is detected, the MIL may flash once per second to notify the driver that the car needs immediate service as soon as possible. In addition, a DTC is set and a freeze frame data is stored.
Answer:
Answer is in attached image!
Explanation: