C Programming The function sprintf() works like printf(), but operates on .......... string no such function in 'C'. stderr stdin Data file string no such function in 'C'. stderr stdin Data file ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?main(){ static int var = 5; printf("%d ", var--); if(var) main();} Compilation Error None of these Infinite Loop 5 4 3 2 1 5 5 5 5 5 Compilation Error None of these Infinite Loop 5 4 3 2 1 5 5 5 5 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Comparing the two strings to define the larger one. Extracting a substring out of a string. Merging two strings. Partitioning the string into two strings. Combining two strings. Comparing the two strings to define the larger one. Extracting a substring out of a string. Merging two strings. Partitioning the string into two strings. Combining two strings. 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? fg defg cdefg efg bcdefg fg defg cdefg efg bcdefg ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54544 54554 45545 55445 54544 54554 45545 55445 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} None of these. 10 9 11 None of these. 10 9 11 ANSWER DOWNLOAD EXAMIANS APP