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
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
What are the __date__ and __time__ preprocessor commands?
What are all different types of pointers in c?
who is the founder of c
19 Answers College School Exams Tests, HP,
What is static and volatile in c?
Write a program to print all permutations of a given string.
In which language linux is written?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
Can you please explain the difference between exit() and _exit() function?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
Is it valid to address one element beyond the end of an array?
3. When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these