in iso what are the common technological language?
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
What is the process to create increment and decrement stamen in c?
What is c language & why it is used?
Explain what is meant by 'bit masking'?
In which area global, external variables are stored?
what is the use of using linked list and array?
What is indirection in c?
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
What are the restrictions of a modulus operator?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
Which is better pointer or array?
When is a “switch” statement preferable over an “if” statement?