2 votes
0 answers
1
What will be the final output : #include <stdio.h int r(){ static int num=7; return num ; } int main(){ for(r();r();r()) { printf("%d ",r()); } return 0; } A)63 B)41 C)52...
1 votes
1 answer
2
what is the difference between *b[10] and (*b)[10] ?