Skip to content

Instantly share code, notes, and snippets.

View RakibOFC's full-sized avatar
😐
Available

Rakibul Islam RakibOFC

😐
Available
View GitHub Profile
@RakibOFC
RakibOFC / Dec2Hex.c
Created January 11, 2020 03:50 — forked from krishnan793/Dec2Hex.c
Decimal to Hex Conversion using recursion.
#include<stdio.h>
void Dec2Hex(int no){
int hex=0;
if(!no)
return;
else {
hex=no%16;
Dec2Hex(no/16);
}