C Programming Determine Output:void main(){ char *p; p="%dn"; p++; p++; printf(p-2, 300);} Error %d\n None of These 300 Error %d\n None of These 300 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 053 65 065 65 Syntax error 65 65 53 65 053 65 065 65 Syntax error 65 65 53 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? % / None of these + * % / None of these + * ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);} Compiler Error None of These will print Hello World Can't Say Compiler Error None of These will print Hello World Can't Say ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p="hi friends", *p1; p1=p; while(*p!='\0') ++*p++; printf("%s", p1);} ij!gsjfoet hi friends None of These hj grjeodt ij!gsjfoet hi friends None of These hj grjeodt 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? strnset() strrchr() strchr() None of these strstr() strnset() strrchr() strchr() None of these strstr() ANSWER DOWNLOAD EXAMIANS APP