GithubHelp home page GithubHelp logo

chatbotc's Introduction

chatBotC

chatbot developed with C

#HERE WE INCLUDING THE HEADER FILES

#include<stdio.h> //- Standard IO for standard Inputs and outputrs #include<string.h> //- its for play with some strings as i suppose.. I used this for compair two strings

int main() { printf("ChatBotC\n\n");

int i;

char ques[100]; //defining the question variable
char name[50]; //for the name

printf("Please Enter your Name : ");
scanf("%s", &name);

//printf("\n%s\n", ques);

while(strcmp(ques, "EXIT") != 0) // this is how that compairing works from that stringg library
{
	printf("\n%s : ", name);
	scanf("%s", &ques);
	
	//for(i = 0; i<=strlen(ques); i++)
	//{
	//	printf("%c\n", ques[i]);
	//}
	
	if(strcmp(ques, "Hello") == 0)
	{
		printf("Hi");
	}
	else if(strcmp(ques, "How_are_you?") == 0)
	{
		printf("I\'m doing well. Thank You!");
	}
	else if(strcmp(ques, "EXIT") == 0)
	{
		printf("Good bye %s..!!", name);
	}
	else
	{
		printf("I have not learned about that yet!!");	
	}
}	
return 0;

}

//THIS CODE IS A CHATBOT KINDA THING.. IT CANT TAKE SPACES IN SCANF YOU HAVE TO FIX IT.. OR EVERYTINE YOU GIVE INPUTS YOU HAVE TO USE _ AS SPACE. EDIT UPDATE eNjOy ;-D

chatbotc's People

Contributors

josephlahiru avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.