What are the benefits of organizational structure?
No Answer is Posted For this Question
Be the First to Post Answer
What is the meaning of 2d in c?
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); }
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
how to create duplicate link list using C???
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
What are unions in c?
what is c?
How to delete a node from linked list w/o using collectons?
Is c# a good language?
How many bytes is a struct in c?
every function has return the value?
Why do we use pointer to pointer in c?