How will you write a code for accessing the length of an array without assigning it to another variable?
No Answer is Posted For this Question
Be the First to Post Answer
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What is use of integral promotions in c?
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
what is the code for getting the output as * ** ***
How does #define work?
how should functions be apportioned among source files?
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
Explain what is the difference between the expression '++a' and 'a++'?
What is static and auto variables in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Describe the order of precedence with regards to operators in C.
What is conio h in c?