C Programming C was primarily developed as None of these Data processing language General purpose language System programming language None of these Data processing language General purpose language System programming language ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} Some Address will be printed Hello H None of These Some Address will be printed Hello H None of These 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");} Error None of These I love Examians I hate Examians Error None of These I love Examians I hate Examians ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function calculates the square of 'x' in C? power(x, 2) pow(x, 2) pow(2, x) sqr(x) power(2, x) power(x, 2) pow(x, 2) pow(2, x) sqr(x) power(2, x) ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Local scope Function scope Block scope No scope at all File scope Local scope Function scope Block scope No scope at all File scope ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Register Array Stack Queue Linked list Register Array Stack Queue Linked list ANSWER DOWNLOAD EXAMIANS APP