C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 0713 713 Syntax error 1289 0289 0713 713 Syntax error 1289 0289 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 None of These hi friends hj grjeodt ij!gsjfoet None of These hi friends hj grjeodt ANSWER DOWNLOAD EXAMIANS APP
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 String concatenation means - Merging two strings. Partitioning the string into two strings. Comparing the two strings to define the larger one. Extracting a substring out of a string. Combining two strings. Merging two strings. Partitioning the string into two strings. Comparing the two strings to define the larger one. Extracting a substring out of a string. Combining two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);} 50, 13, 24, 13 50, 13, 24, 50 50, 13, 11, 13 13, 10, 24, 50 13, 13, 24, 13 50, 13, 24, 13 50, 13, 24, 50 50, 13, 11, 13 13, 10, 24, 50 13, 13, 24, 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is a complete function? int funct(int x) { return x=x+1; } void funct(int) { printf(“Hello"); } int funct(); void funct(x) { printf(“Hello"); } None of these int funct(int x) { return x=x+1; } void funct(int) { printf(“Hello"); } int funct(); void funct(x) { printf(“Hello"); } None of these ANSWER DOWNLOAD EXAMIANS APP