recategorized by
531 views
0 votes
0 votes

 

recategorized by

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
2 votes
2 votes
4 answers
2
iarnav asked May 8, 2017
2,524 views
char * a[] = "red shoes";How the space in string constant "red shoes" will be stored in 1-D array in memory?
3 votes
3 votes
2 answers
3
sabir asked Nov 24, 2015
905 views
Main () { int a [3] [4] = $\begin{pmatrix} 1&2&3&4 \\ 5&6&7&8 \\ 9&10&11&12 \\ \end{pmatrix}$ printf ("\n% u% u% u", a[0]+1, * (a[0] + 1), *(*(a + 0)+1)); }What is the o...