C Programming Which of following is not a valid name for a C variable? Examians Both A and B Exam veda None of these Exam_veda Examians Both A and B Exam veda None of these Exam_veda ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strstr() None of these strrchr() laststr() strnstr() strstr() None of these strrchr() laststr() strnstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following program fragment:for(c=1, sum=0; c <= 10; c++){ scanf("%d", &x); if( x < 0 ) continue; sum += x;}What would be the value of sum for the input 1, -1, 2, -2, 3, -3, 4, -4, 5, -5 10 -5 1 30 15 10 -5 1 30 15 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? skip None of these resume continue break skip None of these resume continue break ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} 6 5 None of these 0 Garbage Value 6 5 None of these 0 Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1; while(i<=5) { printf("%d", i); if(i>2) goto here; i++; }}fun(){ here: printf("PP");} 12PP Compiler Error 12PP345 None of These 12PP Compiler Error 12PP345 None of These ANSWER DOWNLOAD EXAMIANS APP