C Programming What is the base data type of a pointer variable by which the memory would be allocated to it? int float Depends upon the type of the variable to which it is pointing. No data type unsigned int int float Depends upon the type of the variable to which it is pointing. No data type unsigned int ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int value=0; if(value) printf("well done "); printf("examveda");} complier error examians None of these well done examians complier error examians None of these well done examians ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 2, 0 0, 2 2, 4 2, 2 4, 4 2, 0 0, 2 2, 4 2, 2 4, 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the best answer.Prior to using a pointer variable 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. It should be initialized. It should be declared. ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int array[10]; int *i = &array[2], *j = &array[5]; int diff = j-i; printf("%d", diff);} Error Garbage value 6 3 Error Garbage value 6 3 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 45545 54554 55445 54544 45545 54554 55445 ANSWER DOWNLOAD EXAMIANS APP