Variable in C

Variable is like a container (storage space) with a name in which you can store data. It is a way to represent memory location through symbol so that it can be easily identified. The syntax to declare a variable is: Data type variable_name; The example of declaring the variable is given below: int a;float b;char […]

Variable in C Read More »

Recursion in C

Recursion is a process in which function call itself and the function that calls itself directly or indirectly called a recursive function. A recursive function calls itself so there can be several numbers of the recursive call, so the recursive function should have the termination condition to break the recursion. If there is a not

Recursion in C Read More »

Function in C

A function in C is a block of statements that has a name and can be executed by calling it from some other place in your program. functions are used to divide complicated programs into manageable pieces. Using functions has several advantages: Different people can work on different functions simultaneously. Using functions greatly enhances the

Function in C Read More »

B.Tech DSA Notes

Data Structure and Algorithm (DSA) is one of the intresting and important subject of B.tech engineering student those pursuing from Computer Science Engineering(CSE) branch. Data structures and algorithms (DSA) goes through solutions to standard problems in detail and gives you an insight into how efficient it is to use each one of them. It also

B.Tech DSA Notes Read More »

B.Tech Chemistry Notes

Chemistry is one of the important and intresting subject of B.tech 1st year engineering student. Chemistry is called the central science because all scientists study chemicals at some level. Geologists examine the way chemicals come together to form rocks. Biochemists and pharmacologists study chemicals that cause and cure diseases. Astronomers study the chemical compositions of

B.Tech Chemistry Notes Read More »

B.Tech MPI Notes

Microprocessor Interfacing (MPI) is one of the important and intresting subject of B.tech engineering student those pursuing from CSE branch. In this subject we study about microprocessor and its interface .A microprocessor is a computer processor where the data processing logic and control is included on a single integrated circuit, or a small number of

B.Tech MPI Notes Read More »

B.Tech Computer Computer Organization and Architecture (COA) Notes

Computer organization and architecture (COA) is one of the important and intresting subject of B.tech engineering student those pursuing from CSE branch. In general terms, the architecture of a computer system can be considered as a catalogue of tools or attributes that are visible to the user such as instruction sets, number of bits used

B.Tech Computer Computer Organization and Architecture (COA) Notes Read More »