C Programming #includevoid main(){ int *ptr, a=10; ptr = &a; *ptr += 1; printf("%d, %d", *ptr, a);} 10, 11 10, 10 11, 10 11, 11 10, 11 10, 10 11, 10 11, 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... First In First Out order Parallel order Last In First Out order Random order Iterative order First In First Out order Parallel order Last In First Out order Random order Iterative order ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dr. F. Codd Dennis Ritchie Gosling James Bjarne Stroustrup Dr. F. Codd Dennis Ritchie Gosling James Bjarne Stroustrup ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 0 1 10 6 None of these 0 1 10 6 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 3 1 2 0 Garbage Value 3 1 2 0 Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of given program if user enter value 99?#includevoid main(){int i;printf("Enter a number:");scanf("%d", &i); // 99 is given as input.if(i%5 == 0){printf("nNumber entered is divisible by 5"); }} Enter a number:99 Number is divisible by 5 Run time error complier error Enter a number:99 Enter a number:99 Number is divisible by 5 Run time error complier error Enter a number:99 ANSWER DOWNLOAD EXAMIANS APP