✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
What does the typedef keyword do in the given code?#include <stdio.h>#include <stdlib.h>#include <math.h>struct triangle{ int a,b,c;};typedef struct triangle triangle;void sort_by_area(triangle* tr, int n) { /** * Sort an array a of the length n */}int main(){ .... return 0}