Posts by Leh • 13 points
1 post
-
-1
votes1
answer68
viewsQ: I am unable to print the notes, which would be n1 and N2 of the list, I do not know if the parameter sent to the function is correct
#include <stdio.h> #include <stdlib.h> typedef struct nota n; struct nota { float n1; float n2; float mf; struct nota…