C Programming An array elements are always stored in ________ memory locations. Random Sequential None of these Sequential and Random Random Sequential None of these Sequential and Random ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 1 None of these 1 0 0 1 0 0 1 1 None of these 1 0 0 1 0 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Combining two strings. Partitioning the string into two strings. Comparing the two strings to define the larger one. Extracting a substring out of a string. Merging two strings. Combining two strings. Partitioning the string into two strings. Comparing the two strings to define the larger one. Extracting a substring out of a string. Merging two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following program fragment:for(c=1, sum=0; c <= 10; c++){ scanf("%d", &x); if( x < 0 ) continue; sum += x;}What would be the value of sum for the input 1, -1, 2, -2, 3, -3, 4, -4, 5, -5 30 -5 10 15 1 30 -5 10 15 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define prod(a,b) a*bvoid main(){ int x=3, y=4; printf("%d", prod(x+2, y-1));} 11 12 15 10 11 12 15 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Morning M Good Morning Good None of these Morning M Good Morning Good None of these ANSWER DOWNLOAD EXAMIANS APP