Home » Categories » c programming » Find the output main() { int numb...
Find the output main() { int numb...
0
Find the output main() { int number =25; char name ='A' printf("The addition of the name and the number is %o "name +_number) }

#include<stdio.h>

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;
}


a.ink
b.ack
c.ite
d.let
 
Asked By : Bharath Kumar Categories : c programmingProgrammingTechnicalCCSC
  Answer:   a. ink
Post Your Answer
Previous Question
Next Question
Tweet
Related Questions