What is the advantage of a random access file?
No Answer is Posted For this Question
Be the First to Post Answer
what is a non volatile key word in c language?
write a program to print %d ?
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
Write the control statements in C language
If 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 Answers Microsoft, Motorola,
Implement bit Array in C.
code for inverse a matrix
What is the scope of static variable in c?
What is the difference b/w Structure & Class?
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4
What is difference between constant pointer and constant variable?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }