Skip to content

Instantly share code, notes, and snippets.

View mekhti11's full-sized avatar

MekhtI Gumbatov mekhti11

View GitHub Profile
#include<stdio.h>
#include<stdlib.h>
void warn(){
printf("Warning\n");
}
void activate_buzzers(){
printf("activating buzzers...\n");
}
#include<stdio.h>
#include<stdlib.h>
typedef struct link {
int coeff;
int pow;
struct link * next;
} poly;
/** The prototypes */
#include <stdio.h>
struct Polinomial{
int coeff;
int exponent;
};
struct Polinomial poly1[64],poly2[64],sum[64],product[64];
int readPoly(struct Polinomial poly[64]){