Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
1962if a person is buying coconuts of Rs10,and then sell that coconuts of Rs9,with the loss of one rupee.After that the person became a millaniore.how?
9 9682Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }
NDS,
3 7245main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 29075#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 43986fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
NDS,
17 18635#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
NDS,
6 9405
In which layer of the network datastructure format change is done
Is javascript based on c?
What is type qualifiers?
What is indirection?
provide an example of the Group by clause, when would you use this clause
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
What is calloc in c?
What is scope rule in c?
Explain logical errors? Compare with syntax errors.
What is the difference between array and structure in c?
How do I use strcmp?
Explain goto?
what are the 10 different models of writing an addition program in C language?
What are the types of macro formats?
Are there any problems with performing mathematical operations on different variable types?