Posts

C PROGRAMMING

  S tring :- String is a collection of character type data. In other words character arrays are called string. In C programming the group of characters,digits, and symbols enclosed within quotation marks are called as string.Every string is terminated with string ‘\0’(NULL) character. The Null character is a byte with all bits at logic zero. Hence its decimal value is zero. It is not compulsory to write ‘\0’ in string. The compiler automatically puts ‘\0’ at the end of the character array(string). Every character of string store in contiguous memory locations. Each   character of string occupies 1 byte of memory.   char nm[5];   A      B      H       I      \0    nm[0]           nm[1]           ...
                                                    AI(Artificial Intelligence) In AI , we discuss about Intelligence, both Machine and human. Machine Intelligence is popularly known as Artificial Intelligence.   ***** Simple Definitions of AI .******   According to behviour- Oriented approach   “AI is the study of Making Computers smart ”   According to this   approach, AI is concerned   with programming computers to behave Intelligently.   “AI   is the study of making computer models of Human Intelligence.”   “This definition is based on psychologists   point of view, where the purpose is to use computer as a tool to understand better the mechanisms of the human mind.” ...