what is that output of this program #include<iostream.h> using namespace std; int main() { int e1=5, e2=20, e3 = 15; int *arr[ 3]= {&e1, &e2, &e3}; court<<*arr[*arr[1]-19]; return 0; } | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

what is that output of this program #include<iostream.h> using namespace std; int main() { int e1=5, e2=20, e3 = 15; int *arr[ 3]= {&e1, &e2, &e3}; court<<*arr[*arr[1]-19]; return 0; }

1st Aug 2016, 3:51 AM
Santhosha S R
Santhosha  S R - avatar
3 Answers
0
either the output is 20 or error bcoz u wrote court instead of cout
1st Aug 2016, 4:52 AM
Suhail Pappu
Suhail Pappu - avatar
0
#include <stdio.h> #include <conio.h> void main() { inta,b,c; a=10; b=10; c=a+b; printf("%d"c) getch(); }
1st Aug 2016, 2:14 PM
asif
0
But how 20
26th Jan 2020, 6:22 PM
imyash
imyash - avatar