#include <iostream>
using namespace std;
char str[256];
int i = 0;
int main() {
scanf("%s", str);
while(str[i] != ':')
{
i++;
}
printf("%s", str + i + 1);
return 0;
Объяснение:
ввод: dev:web
вывод: web
#include <iostream>
using namespace std;
char str[256];
int i = 0;
int main() {
scanf("%s", str);
while(str[i] != ':')
{
i++;
}
printf("%s", str + i + 1);
return 0;
}
Объяснение:
ввод: dev:web
вывод: web