Looking for Programming Courses - Module Promotion - Viva Voce test answers and solutions? Browse our comprehensive collection of verified answers for Programming Courses - Module Promotion - Viva Voce at lms2.ai.saveetha.in.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
What is the output of the following code? typedef int INTEGER;
Which function is the best way to read a line from a file into a character array?
(i, j) in the pattern ? 4 4 4 4 4 4 4
4 3 3 3 3 3 4
4 3 2 2 2 3 4
4 3 2 1 2 3 4
4 3 2 2 2 3 4
4 3 3 3 3 3 4
4 4 4 4 4 4 4
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}
Which of the following is true about self-referential structures?