Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
11 20881If 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 11455write a program to find the number of even integers and odd integers in a given array in c language
13 77577write 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 122041
What is structure pointer in c?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What is the size of array float a(10)?
What is a program flowchart and explain how does it help in writing a program?
What is an arrays?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What are the loops in c?
What is the modulus operator?
What is union and structure?
what are the different storage classes in c?
What is the use of gets and puts?
What is the process to generate random numbers in c programming language?
What is array of pointers to string?
Explain void pointer?
What is wrong with this statement? Myname = 'robin';