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)
2342if 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 11976Find 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 8554main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 34382#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 48313fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
NDS,
17 22444#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 11232
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
What is the function of volatile in c language?
Explain about block scope in c?
What is switch in c?
Why isn't it being handled properly?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What is the use of header files?
Why pointers are used in c?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
How does normalization of huge pointer works?
What is adt in c programming?
What is the difference between c &c++?
What is ## preprocessor operator in c?
What is d'n in c?