When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
No Answer is Posted For this Question
Be the First to Post Answer
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
what are the facialities provided by you after the selection of the student.
what is the defrenece between structure and union
What does the message "automatic aggregate intialization is an ansi feature" mean?
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
Can you explain the four storage classes in C?
Write a program to find minimum between three no.s whithout using comparison operator.
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
Is c procedural or object oriented?
How can I make it pause before closing the program output window?
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array