Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
11 20030If 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 11192write a program to find the number of even integers and odd integers in a given array in c language
13 76787write 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 121007
Where does the name "C" come from, anyway?
Do you know null pointer?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
What is the purpose of 'register' keyword in c language?
By using C language input a date into it and if it is right?
write a progrmm in c language take user interface generate table using for loop?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
what is the different bitween abap and abap-hr?
what is the format specifier for printing a pointer value?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
How many loops are there in c?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Is c high or low level?
What does volatile do?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }