C Programming and Technical Programming Program

What will be the output of the program ?
#include

int main()
{
int i=3, *j, k;
j = &i;
printf("%dn", i**j*i+*j);
return 0;
}
Options
1) 30
2) 27
3) 9
4) 3

Read Solution (Total 9)

C Other Question

What will be the output of the program?
#include
int main()
{
int i=0;
for(; i<=5; i++);
printf("%d", i);
return 0;
}
Optons
1) 0, 1, 2, 3, 4, 5
2) 5
3) 1, 2, 3, 4
4) 6
What will be the output of the program ?
#include

int main()
{
static char *s[] = {"black", "white", "pink", "violet"};
char **ptr[] = {s+3, s+2, s+1, s}, ***p;
p = ptr;
++p;
printf("%s", **p+1);
return 0;
}
Options
1) ink
2) ack
3) ite
4) let