KUK B.Tech Notes

B.Tech Organizational Behaviour Notes

Organizational Behaviour is one of the important and intresting subject of B.tech engineering student pursuing from CSE, IT, Civil, ME, EC branch. Organizational Behaviour is a multidisciplinary subject because it has borrowed concepts and theories from other fields like Psychology, Sociology, Political science, Anthropology, Economics, Technology, Environmental science, and science. Topperworld provides you the best notes

B.Tech Organizational Behaviour Notes Read More »

What is String

In C programming, a string is a sequence of characters terminated with a null character \0. For examples: char str[] = “Topperworld\0”; When the compiler encounters a sequence of characters enclosed in the double quotation marks, it appends a null character \0 at the end by default. Declaring a String in C : A String

What is String Read More »

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 »

Header Files in C

Header files are additional files in a C language containing definitions of different functions and their associated variables that need to be imported into a C program with the help of a preprocessor #include statement. All the header files have a ‘.h’ extension that contains C function declarations and macro definitions. The default header file

Header Files in C Read More »

Union in C

Union is an user defined datatype in C programming language. It is a collection of variables of different datatypes in the same memory location. We can define a union with many members, but at a given point of time only one member can contain a value. Unions can be very handy when you need to

Union in C Read More »