C Programming What would be the output for the following Turbo C code?#includevoid main(){ int a[]={ 1, 2, 3, 4, 5 }, *p; p=a; ++*p; printf("%d ", *p); p += 2; printf("%d", *p);} 2 3 3 3 2 2 2 4 3 4 2 3 3 3 2 2 2 4 3 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Parallel order First In First Out order Iterative order Random order Last In First Out order Parallel order First In First Out order Iterative order Random order Last In First Out order ANSWER DOWNLOAD EXAMIANS APP
C Programming The operator > and < are meaningful when used with pointers, if The pointers point to structure of similar data type. The pointers point to data of similar type. The pointers point to elements of the same array. None of these. The pointers point to structure of similar data type. The pointers point to data of similar type. The pointers point to elements of the same array. None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the best answer.Prior to using a pointer variable It should be initialized. It should be declared. It should be both declared and initialized. None of these. It should be initialized. It should be declared. It should be both declared and initialized. None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 2, 2 4, 4 2, 0 2, 4 0, 2 2, 2 4, 4 2, 0 2, 4 0, 2 ANSWER DOWNLOAD EXAMIANS APP
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