November 15, 2023Question 11334 – Operatormain( ) { int x; x=3*4%5; printf(“x=%d”,x); } The output is Correct Answer: A Question 3 Explanation: ‘*’ and ‘%’ operator have the same precedence but […]
November 15, 2023Data-StructuresQuestion 82 A program P reads in 500 integers in the range [0, 100] representing the scores of 500 students. It then prints the frequency of […]
November 15, 2023Question 16143 – ArraysWhat is printed by the following ANSI C program? #include { int a[3][3][3] = {{1, 2, 3, 4, 5, 6, 7, 8, 9}, {10, 11, 12, […]
November 15, 2023Data-TypeQuestion 1 The data type of the variable “var1 ” declared in the following ‘C’ language statement is: unsigned var1: A int B double C char […]