install redis

Install Redis in C

#include <stdio.h>
#include <stdlib.h>

int main() {
    system("sudo apt update");
    system("sudo apt install redis-server");
    return 0;
}