How do you initialize pointer variables?
No Answer is Posted For this Question
Be the First to Post Answer
find out largest elemant of diagonalmatrix
main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }
1 Answers Vector, Vector India,
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is the most efficient way to store flag values?
Describe dynamic data structure in c programming language?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
Why n++ execute faster than n+1 ?
Is it valid to address one element beyond the end of an array?
Why doesnt this code work?
How can you allocate arrays or structures bigger than 64K?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?