How big can a 64 bit unsigned integer be?

It is hard or impossible to detect by looking at a value.The problem is the maximum value plus even only 1 is still/again a valid value; i.e. 0. This is why most programmers avoid as much as possible, if it is actually a wrong value. For some applications, wrapping around is part of the logic … Read more

Categories C Tags

Chatbot in C Program

If you want to create a chatbot/auto replay system use the c program just use this code: Copy below code and save use extension .c. example, filename.c. I am using if-else and goto conditions. also use strcmp() function to compare two strings. C program auto replay chatbot Screen Shoot: You can also use this code … Read more

Categories C