CHATBOT IN C
I've some project for collage.. I have to make a simple chatbot program in C. Does anyone have any experience with same project?
View ArticleImplement strcpy function
Hi, I want to implement strcpy function, but something is go wrong. I have made debug and the code works until execute the function. I receive an error something with segmentation fault. Thank you....
View ArticleCopy characters from a file into C programs
please, I have next code: Code: #include <stdio.h> void main(void) { FILE *etc etc=fopen("\\adress_of_file","r"); char caracter; int a; char sir[60]; for(a=0;character=fgetc(etc);i++)...
View Article100 Multiple choice questions in C
/*question number 1*/ Code: int z,x=5,y=-10,a=4,b=2; z = x++ - --y * b / a; What number will z in the sample code above contain? Choice 1 5 Choice 2 6 Choice 3 10 [Ans] Corrected by buddy by running...
View ArticleCan anyone solve this
Write a modular C program that accepts by keyboard input five (5) user-scores of the PS5 gaming console. The program must repeatedly request from each user, ratings on the following factors of the PS5...
View ArticleHow many prime numbers are there in this sequence
I'm writing a program to calculate the number of prime numbers in a sequence. There's a variable called num that is given and then the program must calculate how many prime numbers there are from 2...
View Article