What is c value paradox explain?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what are preprocessor directives?
What is the difference between far and near ?
Explain what will the preprocessor do for a program?
How can you pass an array to a function by value?
regarding pointers concept
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
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,
What is the maximum length of an identifier?
Explain what is meant by high-order and low-order bytes?
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
When should the const modifier be used?
c program to subtract between two numbers without using '-' sign and subtract function.