B.Tech Programming for Problem Solving (PPS) Notes

Programming for Problem Solving(PPS) is one of the important and intresting subject of B.tech engineering student of 1 st Year. In this subject we study about Introduction to components of a computer system: disks, primary and secondary memory, processor, operating system, compilers, creating, compiling and executing a program etc., Number systems Introduction to Algorithms: steps to

B.Tech Programming for Problem Solving (PPS) Notes Read More »

B.Tech Essential of Information Technology (EIT) Notes

Essential of infoformation and technology (JAVA) is one of the important and intresting subject of B.tech engineering student those pursuing from IT branch. Basically in ” EIT ” we learn about “JAVA” programming language. Java is a programming language and computing platform first released by Sun Microsystems in 1995. It has evolved from humble beginnings

B.Tech Essential of Information Technology (EIT) Notes Read More »

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 »