C Programming Functions have .......... File scope Function scope Local scope Block scope No scope at all File scope Function scope Local scope Block scope No scope at all ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program code?#include#define a 10void main(){ #define a 50 printf("%d", a);} 50 None of These Compiler Error 10 50 None of These Compiler Error 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is None of these 215 215 – 1 216 216 – 1 None of these 215 215 – 1 216 216 – 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ float me = 1.1; double you = 1.1; if(me==you) printf("I hate Examveda"); else printf("I love Examveda");} I hate Examians I love Examians Error None of These I hate Examians I love Examians Error None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Comment on the following?const int *ptr; We cannot change the pointer ptr itself. Both of the above We cannot change the value pointed by ptr. We can change the pointer as well as the value pointed by it. We cannot change the pointer ptr itself. Both of the above We cannot change the value pointed by ptr. We can change the pointer as well as the value pointed by it. ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on R-values Members of a structure Both of the above Arithmetic expressions Local variables R-values Members of a structure Both of the above Arithmetic expressions Local variables ANSWER DOWNLOAD EXAMIANS APP