Skip to content

ZEROONES

  • Home
  • Verilog
  • Python
  • Arduino
  • C
  • Contact

ZEROONES

  • Home
  • Verilog
  • Python
  • Arduino
  • C
  • Contact

XOR Logic Gate Modeling Using NAND Gates In Verilog

12 August 2022 by zeroones.org

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: …

Read more

C Program To Check Given Value Is Digit, Alphabet Or Special Character

11 August 2022 by zeroones.org

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 >= …

Read more

NOT Logic Gate Modeling Using Verilog

11 August 2022 by zeroones.org

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= …

Read more

C Program To Check Given Year Is Leap Year Or Not

10 August 2022 by zeroones.org

C Program To Check Given Year Is Leap Year Or Not Example #include <stdio.h> void main() { int year; printf("nn Enter The Year: "); scanf("%d", & year); if (year % …

Read more

XNOR Logic Gate Modeling Using Verilog

10 August 2022 by zeroones.org

XNOR GATE CIRCUIT: TRUTH TABLE: X Y Output(Z) 0 0 1 1 0 0 0 1 0 1 1 1   XNOR GATE MODELLING METHODS: Data Flow Modelling: `timescale 1ns …

Read more

C Program To Find Largest Number Among Three Numbers

9 August 2022 by zeroones.org

C Program To Find Largest Number Among Three Numbers Example #include<stdio.h> void main() { int number1, number2, number3; printf("n Find Out Largest Number Among Three Numbers"); printf("nEnter First Number: "); …

Read more

XOR Logic Gate Modeling Using Verilog

9 August 2022 by zeroones.org

XOR GATE CIRCUIT: TRUTH TABLE: X Y Output(Z) 0 0 0 1 0 1 0 1 1 1 1 0   XOR GATE MODELLING METHODS: Data Flow Modelling: `timescale 1ns …

Read more

C Program To Check Number Is Even Or Odd Using Conditional Operator

8 August 2022 by zeroones.org

C Program To Check Number Is Even Or Odd Using Conditional Operator Example #include<stdio.h> void main() { int number; printf("n Check Odd Or Even "); printf("n Enter The value: "); …

Read more

NAND Logic Gate Modeling Using Verilog

8 June 20258 August 2022 by zeroones.org

Introduction The NAND (NOT-AND) logic gate is a universal gate in digital electronics, capable of implementing any logical function when combined appropriately. It produces an output of 0 only when …

Read more

C Program To Find The Area Of A Square

7 August 2022 by zeroones.org

C Program To Find The Area Of A Square Example #include<stdio.h> void main() { float side, area; printf("n Enter Length Of Square Side: "); scanf("%f", &side); area = side * …

Read more

Older posts
Newer posts
← Previous Page1 … Page29 Page30 Page31 … Page38 Next →

Recent Posts

  • C Programming File handling
  • C Programming Unions
  • C Programming Structures
  • C Programming Pointers
  • C Programming Arrays
© 2025 zeroones, All Rights Reserved.