Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
11 20399If 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 11310write a program to find the number of even integers and odd integers in a given array in c language
13 77145write 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 121461
What is the use of getch ()?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What language is lisp written in?
Is there a way to jump out of a function or functions?
What are the advantages of c preprocessor?
What is c method?
What is a stream water?
What are the 5 organizational structures?
List some basic data types in c?
Is c is a middle level language?
Is there a way to switch on strings?
Why c is called a mid level programming language?
If I have a char * variable pointing to the name of a function ..
Explain how do you print an address?
What is a newline escape sequence?