What is array of structure in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
Do pointers store the address of value or the actual value of a variable?
Where is volatile variable stored?
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
Which is better pointer or array?
Explain how do you view the path?
What is meant by preprocessor in c?
When is a “switch” statement preferable over an “if” statement?
What is the difference between null pointer and the void pointer?
Is int a keyword in c?
what are the general concepts of c and c++
what are # pragma staments?