Explain what are compound statements?
No Answer is Posted For this Question
Be the First to Post Answer
What are register variables? What are the advantage of using register variables?
What is the method to save data in stack data structure type?
What happens if you free a pointer twice?
What is the size of structure in c?
Which is more efficient, a switch statement or an if else chain?
Is c an object oriented programming language?
Explain what are multidimensional arrays?
What is c standard library?
program to print circle structure
Explain how do you view the path?
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); }
Explain the Difference between the New and Malloc keyword.