Monday - May 29, 2023
1

C Program using a unique Math Formula

Let’s walk through the c program in detail: The standard input/output library is included in the c program’s opening “#include <stdio.h>” declaration, enabling it to use functions like “printf” for output display. The program’s entry point is the ‘void main()’ function. It is customary in C Programs to use it to specify the main function, […]

love 20bonito

12 Reasons Why People Love Bonito Brands..!

Love Bonito Love Bonito shorts are a popular clothing item among many people for several reasons. Here are a few possible explanations: Image Source ~ Crafted With ©Ishwaranand – 2023 ~ Image by ©Ishwaranand Style: Love Bonito shorts are known for their stylish designs, which cater to a wide range of fashion preferences. They come in […]

c 20sharp 20and 20sequel

C sharp and sequel programming languages..!

C sharp and sequel programming languages C sharp (C#) and sequel (SQL) are two different programming languages that are commonly used together to develop software applications. Image Source ~ Crafted With ©Ishwaranand – 2023 ~ Image by ©Ishwaranand C# is an object-oriented programming language developed by Microsoft, and it is used to build a wide range […]

c fundaments

C Programming Examples with Output Part – 5

Program C Programming Examples with Output Part – 5 ~ Image by ©Ishwaranand   1) what is the output of the following program? If the user inputs the values as AMRAVATI NAGPUR YAVATMAL  void main(){         char a, b, c;         scanf(“%c%c%c”, &a, %b, &c);         printf(“a=%c b=%c c=%c”, […]

c fundaments

C Programming Examples with Output Part – 4

Program C Programming Examples with Output Part – 4 ~ Image by ©Ishwaranand 1) What is the output of the following program? – 3 Value Increment decrement void main() {              int  x=125, y=140, z=175;              char a= ‘A’, b=’B’, c=’c’;         […]

c fundaments

C Programming Examples with Output Part – 3

Program 1) What is the output of the following program? Character Add or two words add.  void main() {            printf(“computer/b/b/b/b/b”);            printf(“hello! /b/b/bEngineering”) } Output: comphel Engineering C Programming Examples with Output Part – 3 ~ Image by ©Ishwaranand   2) What is the output of the […]

c fundaments

C programming examples with output Part – 2

Program C programming examples with output Part – 2 ~ Image by ©Ishwaranand 1) What is the output of the following program?  if the user inputs the values as 9876545623 void main() {         int a,b,c:         scanf (“%1d %2d %d”, &a, &b, &c);         printf […]

c fundaments

C Programming Examples with Output Part – 1

Program C Programming Examples with Output Part – 1  ~ Image by ©Ishwaranand 1) Write a program to accept two numbers & swap them. #include <stdio.h> #include <conio.h> void main() {          int a, b, temp;          printf(“Enter two numbers : “);          scanf(“%d%d”, &a, &b);   […]

Operator 2Bprecedence 2Band 2Bassociativity

Operator precedence and associativity

Operator precedence and associativity Q) Explain operator presidency and associativity. Precedence of an operator: In an expression when there is more the one operator involved, the evaluation of them is done based on their priority. In C, every operator has its own priority (importance) this priority is known as the precedence of the operator. This […]

Bitwise 2Boperators

What is Bitwise operators in C

Bitwise operators Q) Explain bitwise operators in C. C has the distinction of supporting special operators known as bitwise operators for the manipulation of data at the bit level. These operators are used for testing the bits or shifting them right or left. Bitwise operators may not be applied to float either double. Image Source […]

.