C Programming The address operator &, cannot act on Both of the above R-values Arithmetic expressions Local variables Members of a structure Both of the above R-values Arithmetic expressions Local variables Members of a structure 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 No data type Depends upon the type of the variable to which it is pointing. unsigned int int float No data type Depends upon the type of the variable to which it is pointing. unsigned int int ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is call by value None of these. call by reference call by value result call by value None of these. call by reference call by value result ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of given program if user enter "xyz" ?#includevoid main(){float age, AgeInSeconds;printf("Enter your age:");scanf("%f", &age);AgeInSeconds = 365 * 24 * 60 * 60 * age;printf("You have lived for %f seconds", AgeInSeconds);} Enter your age: xyz You have lived for 0.00000 seconds Enter your age: xyz "after that program will stop" Run time error Enter your age: xyz You have lived for 0 seconds Enter your age: xyz You have lived for 0.00000 seconds Enter your age: xyz "after that program will stop" Run time error Enter your age: xyz You have lived for 0 seconds ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after compiling and running the following code?main() { char *p; printf("%d %d",sizeof(*p), sizeof(p));} 1 1 2 1 1 2 2 2 1 1 2 1 1 2 2 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Relational operators Arithmetic operators Logical operators Equality operators Relational operators Arithmetic operators Logical operators Equality operators ANSWER DOWNLOAD EXAMIANS APP