C Programming In C programming language, which of the following type of operators have the highest precedence Relational operators Logical operators Equality operators Arithmetic operators Relational operators Logical operators Equality operators Arithmetic operators ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? None of these arr[6] arr[7] arr{6} arr{7} None of these arr[6] arr[7] arr{6} arr{7} ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = -1; +i; printf("i = %d, +i = %d", i, +i);} None of These i = 1, +i = 1 i = -1, +i = 1 i = -1, +i = -1 None of These i = 1, +i = 1 i = -1, +i = 1 i = -1, +i = -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; printf("%d %d", sizeof(*p), sizeof(p));} 1 2 2 1 1 1 2 2 1 2 2 1 1 1 2 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Extracting a substring out of a string. Comparing the two strings to define the larger one. Partitioning the string into two strings. Combining two strings. Merging two strings. Extracting a substring out of a string. Comparing the two strings to define the larger one. Partitioning the string into two strings. Combining two strings. Merging two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? strrchr() strstr() None of these strnset() strchr() strrchr() strstr() None of these strnset() strchr() ANSWER DOWNLOAD EXAMIANS APP