Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
11 20002If we have an array of Interger values, find out a sub array which has a maximum value of the array and start and end positions of the array..The sub array must be contiguious. Take the start add to be 4000. For Ex if we have an array arr[] = {-1,-2,-5,9,4,3,-6,8,7,6,5,-3} here the sub array of max would be {8,7,6,5} coz the sum of max contiguous array is 8+7+6+5 = 26.The start and end position is 4014(8) and 4020(5).
5 11177write a program to find the number of even integers and odd integers in a given array in c language
13 76748write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
18 120963
What is memcpy() function?
Explain what is a const pointer?
Which is better malloc or calloc?
What functions are in conio h?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
how to write optimum code to divide a 50 digit number with a 25 digit number??
Why n++ execute faster than n+1 ?
Can we declare variable anywhere in c?
What is sizeof array?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
can anyone suggest some site name..where i can get some good data structure puzzles???
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
What is sorting in c plus plus?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
What does the characters “r” and “w” mean when writing programs that will make use of files?