Jump to content
Fórum Script Brasil
  • 0

Strings em C.


smoketour

Question

Fala pessoal, boa tarde!

Sou iniciante na linguagem C, e estou com uma duvida chata aqui.

Assim, sei que uma string em C é um vetor de caracteres, etc.

Porém, como eu poderia fazer para o usuário inserir uma palavra, armazenar na variavel (vetooor de caracteres), e fazer um IF ou um Switch-case em cima disso?

Por exemplo:

#include <stdlib.h>
#include <stdio.h>
#include <conio.h>

int main(){
       
      char buffer[30];
      printf("Digite string: \n");
      gets(buffer);

      if(buffer == "bola"){
      system("cls");
      printf("FUTEBOL");
      getch();
      }
}

Mas isso não funciona de maneira alguma.

Como posso fazer isso (Se possível, seria melhor com Switch-Case, mas vi na internet que Switch-Case com strings em C não é possível. É verdade)?

Abraço galera.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...