Posts

Showing posts from January, 2020

What are ASCII Codes?

Image
Whatever we write on the computer is written in ASCII, every computer user can operate the computer by creating code based on binary system for digits, letters and symbols. But its codes will only apply to programs and commands by that. This allows users of the computer to not exchange information unless they are familiar with the code signals used by each other. In order to facilitate the exchange of information, a standard code has been prepared in America which is now recognized all over the world.It is known as ASCII . In this, every digit, letter or symbol is shown with 8 bits only 0 and 1 numbers are written in these 8 places. Bit- A bit, that is, a binary digit, is the smallest unit of computer memory. It displays a binary digit 0 or 1 in memory. It is a short form of binary digit. Byte- It is the standard unit of computer memory. Every letter, number or special symbol pressed from the keyboard is stored in the ASCII Code in computer memory. Each ASCII Code is o

C and C++ programming language

Image
Introduction to C Language Today, we are working on computer or mobile in the software or application, language is behind all this and in these languages, C language occupies an important place. Many language, operating system, games have been created by C language. Before introducing C Language, we need to know about the language. What is a language? Language is the medium of communication between two or more persons. Through language, a person can exchange ideas among themselves. A computer is an electronic machine that has no language of its own. The computer required a language to follow our instructions, so a language was created on the basis of the electrical value in the computer. There are generally three types of computer language.      Low-level language     Assembly language     High-level language Low-Level Language: This language is also called machine language, only 0,1 or binary code is used in this language. This language requires hardware in

Data types in C language

Image
The type of data that can be kept in a variable in a programming language is called data type . There are many types of data types such as integer, character, string, real etc. which are kept in a variable in any programming language. All these types are known as data types. When we declare a variable during programming in the normal sense, then you have to tell the compiler what type of data you want to store in the variable, the compiler provides that much memory from the computer memory. With the ability to divide data into different types of language, you can easily work with complex programs. To know the difference between different types of data There are two reasons which are as follows -     The compiler, which translates the program into object code (as 0 and 1), can use the appropriate internal representation for each data type.     While designing a program, programmers can use the correct operator to operate on data of every type. Basic Data types C Language suppor