C Programming #includevoid main(){ int *ptr, a=10; ptr = &a; *ptr += 1; printf("%d, %d", *ptr, a);} 10, 11 11, 11 11, 10 10, 10 10, 11 11, 11 11, 10 10, 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 0 ASCII value of the input read. 1 The number of successful read input values. The actual values read for each argument. 0 ASCII value of the input read. 1 The number of successful read input values. The actual values read for each argument. ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the right choice, if the following loop is implemented?void main(){ int num = 0; do{ --num; printf("%d", num); }while( ++num >= 0 );} Prints the value of 0 one time only. The loop will run infinitely many times. There will be a compilation error reported. A run time error will be generated. The program will not enter into the loop. Prints the value of 0 one time only. The loop will run infinitely many times. There will be a compilation error reported. A run time error will be generated. The program will not enter into the loop. ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the difference between a declaration and a definition of a variable? Both can occur multiple times, but a definition must occur first. A definition occurs once, but a declaration may occur many times. Both can occur multiple times, but a declaration must occur first. A declaration occurs once, but a definition may occur many times. There is no difference between them. Both can occur multiple times, but a definition must occur first. A definition occurs once, but a declaration may occur many times. Both can occur multiple times, but a declaration must occur first. A declaration occurs once, but a definition may occur many times. There is no difference between them. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ printf("%p", main);} Some address will be printed Error make an infinite loop None of These Some address will be printed Error make an infinite loop None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? real float int double char real float int double char ANSWER DOWNLOAD EXAMIANS APP