Longest Increasing Subsequence
Longest Increasing Subsequence
#include <stdio.h>
#include <stdlib.h>
int main()
{
int *arr, size;
printf("Enter size of the array\n");
scanf("%d", &size);
//allocate memory
arr = (int *)malloc(sizeof(int) * size);
return 0;
}