Explain do array subscripts always start with zero?
No Answer is Posted For this Question
Be the First to Post Answer
What does the c in ctime mean?
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
why do we use # in c-language?
How many types of arrays are there in c?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
What is c token?
How can I access an I o board directly?
What is the use of clrscr?
What is binary tree in c?
pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?
2 Answers eClerx, Excel, kenexa,
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What is non linear data structure in c?