C Programming Which of the following function is more appropriate for reading in a multi-word string? None of these printf() puts() scanf() gets() None of these printf() puts() scanf() gets() ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: float *ptr; None of these float ptr; *float ptr; float *ptr; None of these float ptr; *float ptr; ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0; for(;i++;printf("%d", i)); printf("%d", i);} Error 12 1 11 Error 12 1 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? double char float int real double char float int real ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? None of these arr{6} arr{7} arr[7] arr[6] None of these arr{6} arr{7} arr[7] arr[6] ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} None of These 64 4 16 None of These 64 4 16 ANSWER DOWNLOAD EXAMIANS APP