446 views
0 votes
0 votes

Please log in or register to answer this question.

Related questions

4 votes
4 votes
1 answer
1
0 votes
0 votes
2 answers
3
vishalmessi asked Dec 11, 2016
4,103 views
#include <stdio.h int main() { int a[][3] = {1, 2, 3, 4, 5, 6}; int (*ptr)[3] = a; printf("%d %d ", (*ptr) , (*ptr) ); ++ptr; printf("%d %d\n", (*ptr) , (*ptr) ); return ...
3 votes
3 votes
1 answer
4
Storm_907 asked Apr 16, 2023
470 views
Please explain this question void main() { int a =300; char *ptr = (char*) &a ; ptr++; *ptr=2; printf("%d" , a); }