C Program To Display Day Name According To Day Number
C Program To Display Day Name According To Day Number Example #include<stdio.h> void main() { int number; printf("n Enter A Number Between 1 To 7: "); scanf("%d", &number); switch (number) …
C Program To Display Day Name According To Day Number Example #include<stdio.h> void main() { int number; printf("n Enter A Number Between 1 To 7: "); scanf("%d", &number); switch (number) …
C Program To Convert Student All Subject Marks Into Final Grade Example #include<stdio.h> void main() { int percentage, total; int maths, science, english, hindi, sanskrit, computer; printf(“n Student Percentage Calculator”); …
Introduction A half adder is a fundamental digital circuit used for adding two single-bit binary numbers, producing a sum and a carry output. It serves as a basic building block …
C Program To Create Simple Calculator Using If Else Example #include<stdio.h> #include<stdlib.h> void main() { int number, number1 = 9, number2 = 1; int sum, sub, mul, mod; float div; …
Introduction A multiplexer (MUX) is a fundamental digital circuit that selects one of several input signals and forwards it to a single output based on a control signal. A 2×1 …
C Program To Find Square And Cube Of Given Number Example #include<stdio.h> void main() { int number; printf("nn Enter Any Number Which is Greater Then 5: "); scanf("%d", &number); if …
Introduction An Arithmetic Logic Unit (ALU) is a critical component of a microprocessor, responsible for performing arithmetic and logical operations on binary data. A four-bit ALU, capable of processing four-bit …
C Program To Check Given Alphabet Is Vowel Or Consonant Using If Else Statement Example #include<stdio.h> void main() { char character; printf("nn Enter any one Alphabet: "); scanf("%c",&character); if (character …
NOR GATE CIRCUIT USING NAND GATES: TRUTH TABLE: X Y Output(Z) 0 0 1 1 0 0 0 1 0 1 1 0 NOR GATE MODELING USING NAND GATES: …
C Program To Check Given Number Is Even Or Odd Using If Else Statement Example #include<stdio.h> void main() { int number; printf(“n Enter A Integer: “); scanf(“%d”, &number); if (number …