Computer Science, asked by saikumarimmadi1234, 1 year ago

#include <stdio.h>
int main(){
int i = 3;
int *j;
int ***;
j = &i;
k = &j;
printf("%u%u%u",i,j,k);
return 0;​

Answers

Answered by tanuks324
0

Answer:

in this program error will be generate

Similar questions