Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
No Answer is Posted For this Question
Be the First to Post Answer
Is it possible to create recycle bin in mobiles?
Why do we use pointer to pointer in c?
What is static memory allocation?
How can you determine the size of an allocated portion of memory?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return - 1. The function should not make use of any C library function calls.
3 Answers Google, Infosys, JTL, OpenFeel,
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
SRUCTURE PROGRAMMING
how to find the size of the data type like int,float without using the sizeof operator?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
How Many Header Files in c?
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }