C Programming Which of the following function is more appropriate for reading in a multi-word string? puts() printf() gets() None of these scanf() puts() printf() gets() None of these scanf() ANSWER DOWNLOAD EXAMIANS APP
C Programming Array passed as an argument to a function is interpreted as Address of the first element of the array. Number of element of the array. Address of the array. Values of the first elements of the array. Address of the first element of the array. Number of element of the array. Address of the array. Values of the first elements of the array. 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));} 15 12 11 10 15 12 11 10 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 10 -5 1 30 15 10 -5 1 30 15 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ register i=5; char j[]= "hello"; printf("%s %d", j, i);} None of These hello garbage value Error hello 5 None of These hello garbage value Error hello 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as General purpose language None of these System programming language Data processing language General purpose language None of these System programming language Data processing language ANSWER DOWNLOAD EXAMIANS APP