What is the sizeof () a pointer?
No Answer is Posted For this Question
Be the First to Post Answer
What is dynamic memory allocation?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Concat two string with most overlapped substring has to removeĀ "abcd"+ "cdef" = "abcdef
What is the use of printf() and scanf() functions?
How many data structures are there in c?
Here is alphabets : abcdefgh 1) how to reverse. as hgfedcba 2) after reversal, how to group them in a pair hg fe dc ba.
how to find out the union of two character arrays?
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,
write a program of bubble sort using pointer?
What is %s and %d in c?