-
Sowmiya S started the topic pointers in c in the forum C Programming 5 months, 1 week ago
A pointer is a variable that stores the address of another variable. Unlike other variables that hold values of a certain type, pointer holds the address of a variable
-
Sowmiya S started the topic arrays function in c in the forum C Programming 5 months, 1 week ago
Array in C can be defined as a method of clubbing multiple entities of similar type into a larger group. These entities or elements can be of int, float, char, or double data type or can be of user-defined data types too like structures.
-
Sowmiya S started the topic while loop in c in the forum C Programming 5 months, 1 week ago
The while loop in C is used to evaluate a test condition and iterate over the loop body until the condition returns True. The loop ends when the condition returns False. This loop is also known as a pre-tested loop because it is commonly used when the number of iterations is unknown to the user ahead of time
-
Sowmiya S started the topic Nested switch statement in c in the forum C Programming 5 months, 1 week ago
In C++, we can use a nested switch statement, where a switch statement is placed inside another switch statement. If the case constants of both the inner and outer switch statements have the same value, there will be no issues with the code
-
Sowmiya S started the topic conditional operator in c in the forum C Programming 5 months, 1 week ago
The conditional operator is a single programming statement and can only perform one operation. The if-else statement is a block statement, you can group multiple statements using a parenthesis. The conditional operator can return a value and so can be used for performing assignment operations.
-
Sowmiya S started the topic if else statement in c in the forum C Programming 5 months, 1 week ago
In C programming language, if-else statement is used to perform the operations based on some specific condition. If the given condition is true, then the code inside the if block is executed, otherwise else block code is executed. It specifies an order in which the statements are to be executed.
-
Sowmiya S started the topic operators in c in the forum C Programming 5 months, 1 week ago
C programming has basically two operators which can increment ++ and decrement — the value of a variable. It can change the value of an operand (constant or variable) by 1. Increment and Decrement Operators are very useful operators that are generally used to minimize the calculation
-
Sowmiya S started the topic c programming input and output in the forum C Programming 5 months, 1 week ago
In every C program, three basic functions take place – accepting of data as input, the processing of data, and the generation of output. The acceptance of data refers to input and the presentation of data refers to the output. The C program accepts input from the keyboard and displays output on the screen.
-
Sowmiya S started the topic what are the token in c? in the forum C Programming 5 months, 1 week ago
A token is the smallest unit used in a C program. Each and every punctuation and word that you come across in a C program is token. A compiler breaks a C program into tokens and then proceeds ahead to the next stages used in the compilation process.
-
Sowmiya S started the topic Mention the features of C Programming Language. in the forum C Programming 5 months, 4 weeks ago
-
Sowmiya S started the topic Differentiate between calloc() and malloc() in the forum C Programming 5 months, 4 weeks ago
-
Sowmiya S started the topic What are classes and objects in C++? in the forum C++ 5 months, 4 weeks ago
-
Sowmiya S started the topic What are macros in Excel? in the forum C++ 5 months, 4 weeks ago
-
Sowmiya S started the topic How are nested IF statements used in Excel? in the forum C++ 5 months, 4 weeks ago
-
Sowmiya S started the topic What is the difference between count, counta, and countblank? in the forum C++ 5 months, 4 weeks ago
-
Sowmiya S started the topic What is the difference between Python Arrays and lists? in the forum C++ 5 months, 4 weeks ago
-
Sowmiya S started the topic What are local variables and global variables in Python? in the forum C++ 5 months, 4 weeks ago
-
Sowmiya S started the topic What are the register variables? What are the advantages in the forum C++ 5 months, 4 weeks ago
-
Sowmiya S started the topic How can we merge multiple cells text strings in a cell? in the forum C++ 5 months, 4 weeks ago
-
Sowmiya S started the topic Mention the order of operations used in Excel while evaluating formulas. in the forum C++ 5 months, 4 weeks ago
- Load More