What is #define size in c?
No Answer is Posted For this Question
Be the First to Post Answer
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
if array a conatins 'n' elements and array b conatins 'n-1' elements.array b has all element which are present in array a but one element is missing in array b. find that element.
18 Answers Parexel, Ram Infotech, Zycus Infotech,
Write a program to identify if a given binary tree is balanced or not.
Why is this loop always executing once?
Explain function pointer with exapmles.
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
what is the use of pointers
What are the 32 keywords in c?
What is structure in c language?
C program to read the integer and calculate sum and average using single dimensional array
What is the argument of a function in c?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?