C Programming Functions have .......... Function scope No scope at all Block scope Local scope File scope Function scope No scope at all Block scope Local scope File scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *str1 = "abcd"; char str2[] = "abcd"; printf("%d %d %d", sizeof(str1), sizeof(str2), sizeof("abcd"));} 2 5 5 2 4 4 5 5 5 2 4 5 2 5 5 2 4 4 5 5 5 2 4 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54544 45545 45445 54554 54544 45545 45445 54554 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=1;if("%d=hello", a);} no error no output 0 1 complier error no error no output 0 1 complier error ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 216 215 – 1 216 – 1 215 None of these 216 215 – 1 216 – 1 215 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Random order First In First Out order Iterative order Parallel order Last In First Out order Random order First In First Out order Iterative order Parallel order Last In First Out order ANSWER DOWNLOAD EXAMIANS APP