Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.55K
~377 People Reached
Favorite Forums
Favorite Tags
c x 1

1 Posted Topic

Member Avatar for vvidyadhara

# //No use '+' operator : can be implemented as full adder circuit diagram # #include<stdio.h> #include<stdlib.h> #include<string.h> #define MAX 10 int lastbit(int num) { return (num & 0x01); } int sum_wo_op_use_circuit(int n1,int n2) //do not use '+' oprator for sum { int carry=0,p=0,g=0,i=0,s=0,len=0,temp=0,res=0; int arr[MAX]; /*Assume : numbers are …

Member Avatar for karthi.k.s
0
377

The End.