C Programming What will be the output of the following program?#include#define square(x) x*x void main(){ int i; i = 64/square(4); printf("%d", i); } 16 None of These 4 64 16 None of These 4 64 ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. Sequential and Random None of these Sequential Random Sequential and Random None of these Sequential Random ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? printf() system() main() start() getch() printf() system() main() start() getch() ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine the Final Output:void main(){ printf("\nab"); printf("\bsi"); printf("\rha");} asiha hai haasi absiha asiha hai haasi absiha 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 In an expression involving || operator, evaluationI. Will be stopped if one of its components evaluates to falseII. Will be stopped if one of its components evaluates to trueIII. Takes place from right to leftIV. Takes place from left to right III and IV I and III I and II II and III II and IV III and IV I and III I and II II and III II and IV ANSWER DOWNLOAD EXAMIANS APP