C Programming
Find the output of the following program.void main(){ int i=10; /* assume address of i is 0x1234ABCD */ int *ip=&i; int **ipp=&&i; printf("%x,%x,%x", &i, ip, *ipp); }

Runtime error
0x1234ABCD, 10, 10
0x1234ABCD, 0x1234ABCD, 10
Syntax error
0x1234ABCD, 0x1234ABCD, 0x1234ABCD

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is the output of given program if user enter "xyz" ?#includevoid main(){float age, AgeInSeconds;printf("Enter your age:");scanf("%f", &age);AgeInSeconds = 365 * 24 * 60 * 60 * age;printf("You have lived for %f seconds", AgeInSeconds);}

Enter your age: xyz You have lived for 0 seconds
Enter your age: xyz You have lived for 0.00000 seconds
Enter your age: xyz "after that program will stop"
Run time error

ANSWER DOWNLOAD EXAMIANS APP