507 views
2 votes
2 votes
Void fun(){

int i=0;

Printf("%d", i);

Static in j=12; // this is error to declare here right?????

J=j+1;

}

Please log in or register to answer this question.

Related questions

2 votes
2 votes
1 answer
1
Khushboo Solanki asked May 11
104 views
Consider the following function:int arc(int i, int j){if(i<2) return j+2;else if(j<2) return arc(i-1, 1);else return arc(i-1, arc(i, j-2));}The value returned by arc(2, 6...
0 votes
0 votes
2 answers
3
Debargha Mitra Roy asked Apr 16
174 views
#include <stdio.h int main() { int a[3] = {1, 3, 5, 7, 9, 11}; int *ptr = a[0]; ptr += sizeof(int); printf("%d", *ptr); return 0; }(Assume size of int to be $2$ bytes.)T...