Skip to content

Commit

Permalink
Merge pull request tarunsinghofficial#723 from khushi067/main
Browse files Browse the repository at this point in the history
Update kk.md
  • Loading branch information
tarunsinghofficial committed Oct 22, 2020
2 parents 3bf9abd + 51767cc commit 22e4df8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Abhi.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Profile

Photo: abhi.jpeg
name : Khushi

Location: INDIA

Github: https://github.com/abhi0504
Github: https://github.com/khushi067
10 changes: 6 additions & 4 deletions Decimal to Binary
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
#include<stdio.h>
#include<conio.h>

int main()
{
int r,n,q,s=0;
int m,n,q,sum=0;
printf("Enter a no\n");
scanf("%d",&n);
printf("decimal to binary\n");
printf("1");
while(n>1)
{
r=n%2;
m=n%2;
q=n/2;
n=q;
s=s*10+r;
sum=sum*10+r;
}
printf("%d",s);
printf("%d",sum);
return 0;
}
4 changes: 2 additions & 2 deletions I.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
NAME : AYSWARYA S
NAME : khushi
PHOTO : https://www.google.com/imgres?imgurl=https%3A%2F%2Fthumbs.dreamstime.com%2Fb%2Fflower-rose-bouquet-green-136796598.jpg&imgrefurl=https%3A%2F%2Fwww.dreamstime.com%2Fphotos-images%2Fflower.html&tbnid=yjaoeV4UmAulUM&vet=12ahUKEwi0n7u_kq7sAhWYLLcAHeKOBKgQMygAegUIARDEAQ..i&docid=6ZeVwdp2vU8abM&w=800&h=450&q=photos%20of%20flowers%20hd&ved=2ahUKEwi0n7u_kq7sAhWYLLcAHeKOBKgQMygAegUIARDEAQ
GITHUB ACC : https://github.com/ayswarya141/ds-lab.git
GITHUB ACC : https://github.com/khushi067

0 comments on commit 22e4df8

Please sign in to comment.