The next step is to take the newly generated SSH key and add it to your Github or GitLab account. You can add SSH key in your setting of GitLab or GitHub. You want to copy and paste the output of the following command and paste it in your ssh key setting.
cat ~/.ssh/id_rsa.pub
Once you’ve done this, you can check and see if it worked:
#include<stdio.h>
#include<conio.h>
inthcfactor(intx,inty){if(y==0)returnx;elsereturnhcfactor(y,x%y);}voidmain(){inta,b,f;printf("Enter two numbers:\n");scanf("%d%d",&a,&b);f=hcfactor(a,b);printf("HCF of %d and %d is %d.",a,b,f);getch();}