Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~144 People Reached
Favorite Forums
Favorite Tags
c x 1
Member Avatar for nishajain

[CODE]#include<iostream.h> #include<conio.h> void main() { clrscr(); cout<<"Let initial states be 0 0\n"; int Q0,Q1,D0,D1; Q0=0; Q1=0; cout<<Q0<<"\t"<<Q1; int Dff(int clk,int D) { int Q; if((D==0||D==1)&&clk==1) { Q=D; return(Q); } } int NOR(int a,int b) { int out; if(a==0&&b==0) { out=1; return(out); } if(a==1||b==1) { out=0; return(out); } } do { …

Member Avatar for m4ster_r0shi
-1
144