C Programming Which operator from the following has the lowest priority? Division operator Assignment operator Comma operator Unary-operator Conditional operator Division operator Assignment operator Comma operator Unary-operator Conditional operator ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} Hello Some Address will be printed None of These H Hello Some Address will be printed None of These H 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? int unsigned int No data type Depends upon the type of the variable to which it is pointing. float int unsigned int No data type Depends upon the type of the variable to which it is pointing. float ANSWER DOWNLOAD EXAMIANS APP
C Programming short testarray[4][3] = { {1}, {2,3}, {4,5,6}};printf("%d", sizeof(testarray));Assuming a short is two bytes long, what will be printed by the above code? It will not compile because not enough initializers are given 24 12 7 6 It will not compile because not enough initializers are given 24 12 7 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a reserved keyword for C? auto main register case default auto main register case default ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? + / % * None of these + / % * None of these ANSWER DOWNLOAD EXAMIANS APP