C Programming The operator > and < are meaningful when used with pointers, if The pointers point to elements of the same array. None of these. The pointers point to structure of similar data type. The pointers point to data of similar type. The pointers point to elements of the same array. None of these. The pointers point to structure of similar data type. The pointers point to data of similar type. ANSWER DOWNLOAD EXAMIANS APP
C Programming #includevoid main(){ int *ptr, a=10; ptr = &a; *ptr += 1; printf("%d, %d", *ptr, a);} 11, 11 11, 10 10, 10 10, 11 11, 11 11, 10 10, 10 10, 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Helps to avoid repeating a set of statements many times. All of these Helps to avoid repeated programming across programs. Makes the debugging task easier. Enhances the logical clarity of the program. Helps to avoid repeating a set of statements many times. All of these Helps to avoid repeated programming across programs. Makes the debugging task easier. Enhances the logical clarity of the program. ANSWER DOWNLOAD EXAMIANS APP
C Programming Comment on the following pointer declaration?int *ptr, p; ptr and p, both are pointers to integer. ptr and p both are not pointers to integer. ptr is pointer to integer, p may or may not be. ptr is a pointer to integer, p is not. ptr and p, both are pointers to integer. ptr and p both are not pointers to integer. ptr is pointer to integer, p may or may not be. ptr is a pointer to integer, p is not. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; printf("%d %d", sizeof(*p), sizeof(p));} 2 2 2 1 1 1 1 2 2 2 2 1 1 1 1 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... The number of successful read input values. 0 The actual values read for each argument. 1 ASCII value of the input read. The number of successful read input values. 0 The actual values read for each argument. 1 ASCII value of the input read. ANSWER DOWNLOAD EXAMIANS APP