Hot questions in Programming and DS

1 votes
1 answer
2704
0 votes
1 answer
2705
Can someone explain Secondary Clustering to me? The distance between two successive probes is quadratic. I get it, but how are clusters being formed?
1 votes
2 answers
2706
2 votes
2 answers
2707
Please tell the output ! With explanation..#include<stdio.h>int main(){ printf("%d", 2<<2>>2); printf("\n%d", 2>>2<<2<<(1<<1)); return 0;}
0 votes
2 answers
2708
What will be the output: #include <iostream using namespace std; int main() { char *A[] = { "abcx", "dbba", "cccc"}; char var = *(A+1) - *A+1; cout << (*A + var); }1. $ab...
0 votes
1 answer
2710
Two adjacent edges in a simple graph are said to be in series if their common vertex is of degree ____.1234
0 votes
2 answers
2711
0 votes
0 answers
2714
can anyone help me how to prepare the c programming language for gate?
0 votes
1 answer
2715
3 votes
1 answer
2716
20 votes
1 answer
2717
1 votes
2 answers
2718
#include<stdio.h int main(void) { int p = 1; int q = 0; q = p++ + p++; printf("%d %d",p,q); return 0; }Output is Showing $3,3$ How ?
1 votes
1 answer
2719
#include<stdio.h main() { char *p = 0; *p = 'a'; printf("value in pointer p is %c\n",*p); }What is the output of this code ? Why?
1 votes
1 answer
2720
what is the output?