Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
11 20424If 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 11318write a program to find the number of even integers and odd integers in a given array in c language
13 77157write 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 121483
What are keywords in c with examples?
while initialization of array why we use a[][2] why not a[2][]...?
What is page thrashing?
Is c# a good language?
What is chain pointer in c?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
c language interview questions & answer
What do you mean by keywords in c?
What are the advantages of union?
How can you increase the size of a statically allocated array?
What are the different data types in C?
Write a program to find factorial of a number using recursive function.
What is a pointer value and address in c?
Explain what is the concatenation operator?
Is register a keyword in c?