Can we declare a function inside a function in c?
Explain the concept and use of type void.
Can you write the function prototype, definition and mention the other requirements.
Is c programming hard?
Implement bit Array in C.
What do you know about the use of bit field?
What happens if you free a pointer twice?
largest Of three Number using without if condition?
Should I learn data structures in c or python?
Why is c faster?
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); }
Is return a keyword in c?
How to Throw some light on the splay trees?
Can a program have two main functions?
What is equivalent to ++i+++j?