C Programming What will be the value of sum after the following program is executed?void main(){ int sum=1, index = 9; do{ index = index – 1; sum *= 2; }while( index > 9 );} 1 0.25 0.5 9 2 1 0.25 0.5 9 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#includevoid main(){ int i = 10; void *p = &i; printf("%f", *(float *)p);} Error 0.000000 None of these. 10 Error 0.000000 None of these. 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following program?#includeint c[10] = {1,2,3,4,5,6,7,8,9,10}; main(){ int a, b=0; for(a=0;a<10;++a) if(c[a]%2 == 1) b+=c[a]; printf("%d", b);} None of these 25 30 24 20 None of these 25 30 24 20 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 No data type Depends upon the type of the variable to which it is pointing. float unsigned int int No data type Depends upon the type of the variable to which it is pointing. float unsigned int ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} Exam\0Veda None of these Veda Exam Exam Veda Exam\0Veda None of these Veda Exam Exam Veda ANSWER DOWNLOAD EXAMIANS APP
C Programming The statement int **a; is legal but meaningless None of these. is syntactically and semantically correct is illegal is legal but meaningless None of these. is syntactically and semantically correct is illegal ANSWER DOWNLOAD EXAMIANS APP