what do you mean by enumeration constant?
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
Is c still relevant?
Are c and c++ the same?
What is a void * in c?
How can you allocate arrays or structures bigger than 64K?
what is the difference between declaration and definition of a variable or function ?
What is dangling pointer in c?
Explain what is page thrashing?
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?
In how much time you will write this c program? Prime nos from 1 to 1000
question-how to run a c programme.
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }