C Programming Determine Output:#includevoid main(){ char s[]={'a','b','c','n','c','\0'}; char *p, *str, *str1; p=&s[3]; str=p; str1=s; printf("%c", ++*p + ++*str1-32);} None of These N P M None of These N P M ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? && ++ || + % && ++ || + % ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=3; switch(i) { default: printf("zero"); case 1: printf("one"); break; case 2: printf("two"); break; case 3: printf("three"); break; }} Error three zero None of These Error three zero None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Comparing the two strings to define the larger one. Combining two strings. Merging two strings. Extracting a substring out of a string. Partitioning the string into two strings. Comparing the two strings to define the larger one. Combining two strings. Merging two strings. Extracting a substring out of a string. Partitioning the string into two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming If ASCII value of 'x' is 120, then what is the value of the H, ifH = ('x' – 'w' ) / 3; 1 0 3 2 1 0 3 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming For 16-bit compiler allowable range for integer constants is ________? -32768 to 32767 -32767 to 32768 -3.4e38 to 3.4e38 -32668 to 32667 -32768 to 32767 -32767 to 32768 -3.4e38 to 3.4e38 -32668 to 32667 ANSWER DOWNLOAD EXAMIANS APP