C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 11 6 6 6 5 6 12 7 6 7 11 6 6 6 5 6 12 7 6 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Combining two strings. Extracting a substring out of a string. Comparing the two strings to define the larger one. Partitioning the string into two strings. Merging two strings. Combining two strings. Extracting a substring out of a string. Comparing the two strings to define the larger one. Partitioning the string into two strings. Merging two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=1;if("%d=hello", a);} no error no output 1 complier error 0 no error no output 1 complier error 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of given program if user enter "xyz" ?#includevoid main(){float age, AgeInSeconds;int value;printf("Enter your age:");value=scanf("%f", &age);if(value==0){printf("\\nYour age is not valid");}AgeInSeconds = 365 * 24 * 60 * 60 * age;printf("\\n You have lived for %f seconds", AgeInSeconds);} Enter your age : xyz Your age is not valid Enter your age: xyz You have lived for 0 seconds Enter your age: xyz Your age is not valid Complier error Enter your age : xyz Your age is not valid Enter your age: xyz You have lived for 0 seconds Enter your age: xyz Your age is not valid Complier error ANSWER DOWNLOAD EXAMIANS APP
C Programming #includevoid main(){ int *ptr, a=10; ptr = &a; *ptr += 1; printf("%d, %d", *ptr, a);} 11, 10 11, 11 10, 10 10, 11 11, 10 11, 11 10, 10 10, 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Good None of these Morning Good Morning M Good None of these Morning Good Morning M ANSWER DOWNLOAD EXAMIANS APP