Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles by Bhanu Priya
Page 54 of 107
Write a C program to find out profit or loss in buying an article
In business transactions, calculating profit or loss is essential to determine the financial outcome. Profit occurs when the selling price exceeds the cost price, while loss occurs when the cost price is greater than the selling price. Syntax if (selling_price > cost_price) { profit = selling_price - cost_price; } else if (cost_price > selling_price) { loss = cost_price - selling_price; } else { // No profit, no loss } Formulas The formulas for calculating profit and loss are − Profit: ...
Read MoreHow to write the temperature conversion table by using function?
Temperature conversion is nothing but converting Fahrenheit temperature to Celsius or Celsius to Fahrenheit. In this programming, we are going to explain how to convert the Fahrenheit temperature to Celsius temperature and how to represent the same in the form of a table by using a function. Syntax // Function to convert Fahrenheit to Celsius float fahrenheitToCelsius(float fahrenheit); // Function to convert Celsius to Fahrenheit float celsiusToFahrenheit(float celsius); Example 1: Fahrenheit to Celsius Conversion Table Following is the C program for temperature conversion table from Fahrenheit to Celsius − ...
Read MoreExplain the variable declaration, initialization and assignment in C language
In C programming, variables are named storage locations in memory that hold data values. Unlike constants, variables can have their values modified during program execution. Before using any variable, it must be declared to inform the compiler about its data type and name. Syntax data_type variable_name; data_type variable_name = initial_value; data_type var1, var2, var3; Variable Declaration Variable declaration tells the compiler to reserve memory space for a variable with a specific data type. The syntax is − type variable_name; or for multiple variables of the same type − ...
Read MoreAccessing variables of Int and Float without initializing in C
When we declare variables in C without initializing them, their values are unpredictable. This article demonstrates what happens when we try to access uninitialized int and float variables and explains the underlying memory behavior. Syntax data_type variable_name; // Declaration without initialization Understanding Uninitialized Variables When a variable is declared but not initialized, the following occurs − Memory is allocated for the variable during declaration The memory location contains whatever data was previously stored there This results in garbage values − unpredictable leftover data from previous program executions The actual ...
Read MoreGiven an example of C pointer addition and subtraction
Pointer arithmetic is a fundamental concept in C programming that allows you to perform mathematical operations on pointer variables. Two important operations are pointer addition and subtraction, which help navigate through memory addresses. Syntax /* Pointer Addition */ new_address = current_address + n; /* Pointer Subtraction */ new_address = current_address - n; Where n is the number of elements to move, and the actual byte offset is calculated as: n * sizeof(data_type) C Pointer Addition Pointer addition involves adding an integer value to a pointer. The result is a new memory address ...
Read MoreCompute sum of all elements in 2 D array in C
In C programming, computing the sum of all elements in a 2D array involves traversing through each element using nested loops and accumulating the values. This is a fundamental operation when working with matrices and tabular data. Syntax datatype array_name[rows][columns]; For example: int arr[3][4]; creates a 2D array with 3 rows and 4 columns, containing 12 elements total. Example 1: Sum of All Elements Following is the C program to calculate the sum of all elements in a 2D array − #include int main() { ...
Read MoreExplain volatile and restrict type qualifiers in C with an example
Type qualifiers in C add special attributes to existing data types to control how variables are accessed and optimized by the compiler. The two important type qualifiers are volatile and restrict, which help with memory management and compiler optimization. volatile Prevents compiler optimizations restrict Enables compiler optimizations const Read-only qualifier Type Qualifiers in C Syntax volatile ...
Read MoreWhat are the C library functions?
Library functions are built-in functions that are grouped together and placed in a common location called library. Each function performs a specific operation, allowing us to get pre-defined outputs without implementing complex logic from scratch. All C standard library functions are declared by using many header files. These library functions are created at the time of designing the compilers. We include the header files in our C program by using #include. Whenever the program is compiled and executed, the related files are included in the C program. Syntax #include int main() { ...
Read MoreWhat are the limitations of array in C language?
Arrays are a kind of data structure that can store a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type. Syntax data_type array_name[array_size]; Limitations of Arrays in C The limitations of an array are explained below − Homogeneous Data: An array which is formed will be homogeneous. That is, in an integer array only integer values can be stored, while in a ...
Read MoreExplain top-down design and structure chart of function in C language
A function is a self-contained block that carries out a specific well defined task. Functions are fundamental building blocks in C programming that enable modular programming and code organization. Advantages of functions in C language include − Reusability − Functions can be called multiple times from different parts of the program. Reduced program length − Eliminates code duplication by defining common tasks once. Easy debugging − It is easy to locate and find any faulty function. Modular programming − It facilitates top-down modular programming approach. Top-Down Design Top-down design is a problem-solving methodology in ...
Read More