Author : bhanu798181@gmail.com

Fundamentals of Computers

What is a Computer? A computer is an electronic device that processes data, performs calculations, and executes instructions to perform a wide range of tasks. It takes input, processes it according to a set of instructions, and produces output. Computers can store vast amounts of data and execute complex programs at incredible speeds, making them […]

User defined functions, pointers,file management and preprocessor directives

Define functions in C n C programming, a function is like a small, reusable block of code designed to perform a specific task. Think of it as a mini-program within your main program. Functions help you organize your code better and avoid repetition. They are written inside curly braces { }, which group together the […]

Arrays and strings, Structures and Unions

Define array An array is a collection of similar data types stored in contiguous memory locations. In programming, an array of characters is referred to as a string. Each item in an array is called an element, and each element is stored at a unique memory location. Although all elements share the same variable name, […]

Decision making, iterative andother control statements

Introduction of decision making statements: Conditional statements, also called decision control structures, such as if, if-else, and switch, are used for making decisions in C programs.These statements, sometimes referred to as Decision-Making Statements, evaluate one or more conditions to determine whether a specific block of code should be executed. They guide the flow of program […]

Input and output statements,Operators and Expressions In C

Introduction for printf() and scanf() function : In C programming, input and output operations are fundamental for interacting with users and displaying results. These operations are typically handled using standard functions provided by the C standard library. The primary functions for input and output in C are printf for output and scanf for input. Output […]

Scroll to top