Skip to content

Instantly share code, notes, and snippets.

View RakibOFC's full-sized avatar
😐
Available

Rakibul Islam RakibOFC

😐
Available
View GitHub Profile
package facebook;
import java.util.Scanner;
import java.util.Random;
package facebook;
class Facebook {
String name;
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int quicksort(int a[], int first, int last)
{
int i, j, pivot, temp;
if(first < last)
{
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int main()
{
int i, j, a[300000], num, temp;
double start, end;
srand(time(0));
printf("Enter input size: ");
#define WINVER 0x0500
#include <stdio.h>
#include <string.h>
#include <conio.h>
#include <stdlib.h>
#include <windows.h>
int m, n, i, j, r = 2, r2 = 0, c = 2, len, option, size = 12;
char ch1, ch2;
@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);
}