C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 1 0 0 1 0 1 1 None of these 0 1 0 0 1 0 1 1 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int i=i++, j=j++, k=k++; printf("%d %d %d", i, j, k);} 0 0 0 Error garbage values 1 1 1 0 0 0 Error garbage values 1 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 6 10 None of these 0 1 6 10 None of these 0 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is laststr() strstr() strnstr() None of these strrchr() laststr() strstr() strnstr() None of these strrchr() ANSWER DOWNLOAD EXAMIANS APP
C Programming char *ptr;char myString[] = "abcdefg";ptr = myString;ptr += 5;what string does ptr point to in the sample code above? defg efg cdefg bcdefg fg defg efg cdefg bcdefg fg ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i; char a[]="�"; if(printf("%sn", a)) printf("Ok here n"); else printf("Forget itn");} None of These Ok here Forget it Error None of These Ok here Forget it Error ANSWER DOWNLOAD EXAMIANS APP