Explain how does flowchart help in writing a program?
No Answer is Posted For this Question
Be the First to Post Answer
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
Explain the properties of union. What is the size of a union variable
Is c a great language, or what?
What is a structural principle?
1.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?
What is the difference between a structure and a union?
WAP to accept first name,middle name & last name of a student display its initials?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
What are identifiers c?
Explain output of printf("Hello World"-'A'+'B'); ?
Diff between for loop and while loop?
Write a program to print “hello world” without using semicolon?