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)
2294if 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 11700Find 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 8428main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 33712#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 47775fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
NDS,
17 21938#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 11025
Can we change the value of #define in c?
What are the different types of control structures in programming?
What is return in c programming?
Differentiate between static and dynamic modeling.
Explain what does it mean when a pointer is used in an if statement?
Is c language still used?
int far *near * p; means
What are enums in c?
Is r written in c?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
What is meant by preprocessor in c?
How we can insert comments in a c program?
How to get string length of given string in c?
What is a constant and types of constants in c?
What is the purpose of clrscr () printf () and getch ()?