517 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

226
views
1 answers
2 votes
Khushboo Solanki asked May 11
226 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...
131
views
0 answers
0 votes
srijankarak_123 asked May 7
131 views
let suppose address of first index of array is n and size of each block of array is u. then the index of second element is a+u.let suppose the array has m elements.what w...
225
views
1 answers
0 votes
Debargha Mitra Roy asked Apr 16
225 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...
269
views
0 answers
0 votes
Debargha Mitra Roy asked Apr 12
269 views
Problem Statement: Class teacher to IX-C wants to store whether a particular student has passed in exams. The class has a strength of $32$ students. Their roll numbers li...