C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} Some Address will be printed H Hello None of These Some Address will be printed H Hello None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? Program do no return a value. 2 -1 1 Program do no return a value. 2 -1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The operator > and < are meaningful when used with pointers, if The pointers point to structure of similar data type. The pointers point to data of similar type. The pointers point to elements of the same array. None of these. The pointers point to structure of similar data type. The pointers point to data of similar type. The pointers point to elements of the same array. None of these. 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? None of these break skip resume continue None of these break skip resume continue ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? && % ++ + || && % ++ + || ANSWER DOWNLOAD EXAMIANS APP
C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 I, II and III I and II III and IV II and III I, III and IV I, II and III I and II III and IV II and III I, III and IV ANSWER DOWNLOAD EXAMIANS APP