C Programming Which of following is not a valid name for a C variable? Exam veda Both A and B None of these Exam_veda Examians Exam veda Both A and B None of these Exam_veda Examians ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str1[20] = "Hello", str2[20] = " World"; printf("%s", strcpy(str2, strcat(str1, str2)));} Hello World WorldHello None of these Hello World Hello World WorldHello None of these Hello World ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Both of the above R-values Members of a structure Arithmetic expressions Local variables Both of the above R-values Members of a structure Arithmetic expressions Local variables ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int array[10]; int *i = &array[2], *j = &array[5]; int diff = j-i; printf("%d", diff);} Garbage value 6 3 Error Garbage value 6 3 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Register Array Linked list Stack Queue Register Array Linked list Stack Queue ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following program?#includeint c[10] = {1,2,3,4,5,6,7,8,9,10}; main(){ int a, b=0; for(a=0;a<10;++a) if(c[a]%2 == 1) b+=c[a]; printf("%d", b);} 25 None of these 30 20 24 25 None of these 30 20 24 ANSWER DOWNLOAD EXAMIANS APP