C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 I, III and IV 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 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ float arr[] = {12.4, 2.3, 4.5, 6.7}; printf("%d", sizeof(arr)/sizeof(arr[0]));} None of these 7 6 4 5 None of these 7 6 4 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Relational operators Equality operators Arithmetic operators Logical operators Relational operators Equality operators Arithmetic operators Logical operators ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... stderr stdin Data file no such function in 'C'. string stderr stdin Data file no such function in 'C'. string ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 2 0 1 3 Garbage Value 2 0 1 3 Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Good Morning M None of these Morning Good Good Morning M None of these Morning Good ANSWER DOWNLOAD EXAMIANS APP