✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
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}