// Created by [B.S.] BITTU
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
// Check Examples
//Compiler version gcc 6.3.0
char **buffer;
char** alloc(char **ptr,int index)
{
ptr = (char**)malloc(sizeof(char*[index+1]));
ptr[index] = (char*)malloc(sizeof(char)*260);
return ptr;
}
int main()
{
buffer = alloc(buffer,0);