@aritra
b.tech student
hello! everyone I am a final year engineering student and coding is my passion.....I am a beginner in coding but a focused student to learn and develop myself in the field of programming...as a beginner I will do come out with a lot of questions for others and I will also try to solve others problems with my knowledge and learn something out of it.
Nothing here yet.
No blogs yet.
//binary to octal conversion #include<stdio.h> #include<math.h> int main() { int binary,i=0,rem,c,count=0,x=0; printf("enter a binary number for conversion to decimal\n"); scanf("%d",&binary); while(count<=3); { rem=binary%10;...