CARVIEW |
Select Language
HTTP/2 200
date: Sat, 11 Oct 2025 15:07:31 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=12cfe13df48c00e6df8d4606e05c8db14cdf63ce25b66d97f296b319ed201bfca%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22ycVzas5B6W9bbdxeub_BabvNbimTYv5N%22%3B%7D; HttpOnly; Path=/
cf-ray: 98cf447c08efc1a6-BLR
Lista 04 - exercício 24 - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // solução simples: considera que só existe 1 espaço entre as palavras, e não existem espaços no início
- #include <stdio.h>
- #include <string.h>
- int main() {
- char frase[5000];
- printf("Entre com a frase:");
- gets(frase);
- int i;
- frase[0] = toupper(frase[0]);
- for(i=1; frase[i] != '\0'; i++) {
- if(frase[i] == ' ') {
- i++;
- frase[i] = toupper(frase[i]);
- }
- }
- printf("Frase transformada: %s", frase);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐✅ Online Marketplace Exploit ✅ NEVER SEEN BE...
JavaScript | 1 sec ago | 0.24 KB
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ E
JavaScript | 3 sec ago | 0.24 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ 0
JavaScript | 10 sec ago | 0.24 KB
-
⭐✅ Trading Profit Method ✅ NEVER SEEN BEFORE...
JavaScript | 11 sec ago | 0.24 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ M
JavaScript | 14 sec ago | 0.24 KB
-
⭐ Instant BTC Profit Method ✅ NEVER SEEN BEFO...
JavaScript | 20 sec ago | 0.24 KB
-
⭐✅ Swapzone Glitch ✅ Working⭐⭐⭐ I
JavaScript | 21 sec ago | 0.24 KB
-
⭐✅ Swapzone Glitch ✅ Working⭐⭐⭐ 4
JavaScript | 25 sec ago | 0.24 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand