C Program To Create Simple Calculator Using If Else
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; …
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 …
XOR GATE CIRCUIT USING NAND GATES: TRUTH TABLE: X Y Output(Z) 0 0 0 1 0 1 0 1 1 1 1 0 XOR GATE MODELING USING NAND GATES: …
C Program To Check Given Value Is Digit, Alphabet Or Special Character Example #include<stdio.h> void main() { char character; printf(“n Enter Ant One Character: “); scanf(“%c”, &character); if ((character >= …
NOT GATE CIRCUIT: TRUTH TABLE: X Output(Z) 0 1 1 0 XNOR GATE MODELLING METHODS: Data Flow Modelling: `timescale 1ns / 1ps module notGate(output z, input x); assign z= …