C Programming What would be the output for the following Turbo C code?#includevoid main(){ int a[]={ 1, 2, 3, 4, 5 }, *p; p=a; ++*p; printf("%d ", *p); p += 2; printf("%d", *p);} 2 4 3 4 2 2 2 3 3 3 2 4 3 4 2 2 2 3 3 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p="hi friends", *p1; p1=p; while(*p!='\0') ++*p++; printf("%s", p1);} None of These hj grjeodt ij!gsjfoet hi friends None of These hj grjeodt ij!gsjfoet hi friends ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int value=0; if(value) printf("well done "); printf("examveda");} examians complier error None of these well done examians examians complier error None of these well done examians ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} 4 5 6 7 8 9 4 5 6 7 8 9 10 None of these 1 2 3 4 5 6 7 8 9 1 2 3 10 4 5 6 7 8 9 4 5 6 7 8 9 10 None of these 1 2 3 4 5 6 7 8 9 1 2 3 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char not; not = !2; printf("%d", not);} 0 2 Garbage Value None of These 0 2 Garbage Value None of These 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 Depends upon the type of the variable to which it is pointing. No data type unsigned int float int Depends upon the type of the variable to which it is pointing. No data type unsigned int float ANSWER DOWNLOAD EXAMIANS APP