Answer Posted / ms kumar
In c the program will divided into different functions.it
useful whenever u need to update a particular part .
| Is This Answer Correct ? | 22 Yes | 1 No |
Post New Answer View All Answers
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 is adt in c programming?
Difference between pass by reference and pass by value?
Why is c not oop?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
provide an example of the Group by clause, when would you use this clause
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Why can’t we compare structures?
Explain the binary height balanced tree?
Can a pointer be volatile in c?
how do you programme Carrier Sense Multiple Access
What is the use of ?
Write a program to print factorial of given number without using recursion?
Is it fine to write void main () or main () in c?
How can I read in an object file and jump to locations in it?