Computer Science, asked by supriya45511203, 11 months ago

a mark
clear
Which of the following is not a pointer declaration?
char
char *str;
char al = ['1', '2, '3', 4'};
char a[10];​

Answers

Answered by Varalakshmi2317
1

Answer:

char *str is a pointer declaration..left of them were not.

char a[10] is a array declaration.

al is variable of type char.

Similar questions