1 answer
3
17 answers
7
1 answer
8
Can someone give some estimate of rank distribution according to marks based on the difficulty of the question paper set-1?
4 answers
10
int main(){ int n=1,sum =0; while(n<=10){ sum += n++*n++; } printf("Sum = %d\n",sum); return 0 }ans is 165 . i got 190.please explain??
2 answers
13
Consider the C function func shown below: int func(int num) { int count = 0; while (num) { count++; num>>= 1; } return (count); }The value returned by func(0235) is _____...
1 answer
14
0 answers
18
How do I construct the intersection of two NFAs? Do I need to follow the same cross product method like the DFAs? If so, then how do I handle the epsilon transitions?Plea...
2 answers
19
The above synchronisation procedure satisfies 1. Mutual exclusion is guranteed2.Progress is not guranteed3.Bounded wait is not guranteed4Deadlock may occur I am getting a...
2 answers
22
2 answers
24
What does this mean?int *(*func())[] According to me , it means that its an array of pointers to functions which returns pointers of type int. Am I correct?
2 answers
25