C Programming Determine Output:void main(){ int i; printf("%d", scanf("%d", &i)); // value 10 is given as input here} Garbage Value 1 None of These 10 Garbage Value 1 None of These 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... The number of successful read input values. ASCII value of the input read. 0 1 The actual values read for each argument. The number of successful read input values. ASCII value of the input read. 0 1 The actual values read for each argument. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54544 45445 45545 54554 54544 45445 45545 54554 ANSWER DOWNLOAD EXAMIANS APP
C Programming The statement int **a; None of these. is syntactically and semantically correct is legal but meaningless is illegal None of these. is syntactically and semantically correct is legal but meaningless is illegal 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? cdefg bcdefg defg fg efg cdefg bcdefg defg fg efg ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Iterative order First In First Out order Random order Parallel order Last In First Out order Iterative order First In First Out order Random order Parallel order Last In First Out order ANSWER DOWNLOAD EXAMIANS APP