C Programming Determine Output:void main(){ printf("%p", main);} Some address will be printed make an infinite loop Error None of These Some address will be printed make an infinite loop Error None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Block scope No scope at all Function scope Local scope File scope Block scope No scope at all Function scope Local scope File scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i; printf("%d", scanf("%d", &i)); // value 10 is given as input here} 10 Garbage Value None of These 1 10 Garbage Value None of These 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? -10 -110 110 10 450 -10 -110 110 10 450 ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the best answer.Prior to using a pointer variable It should be both declared and initialized. It should be initialized. None of these. It should be declared. It should be both declared and initialized. It should be initialized. None of these. It should be declared. ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the base data type of a pointer variable by which the memory would be allocated to it? float int No data type Depends upon the type of the variable to which it is pointing. unsigned int float int No data type Depends upon the type of the variable to which it is pointing. unsigned int ANSWER DOWNLOAD EXAMIANS APP