Can you please explain the difference between malloc() and calloc() function?
triangle number finding program...
write a prgram of swapping with 2 valiables
Differentiate between the = symbol and == symbol?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
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,
Explain the Difference between the New and Malloc keyword.
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview
2 Answers Satyam, UNIS, Wipro,
What’s the special use of UNIONS?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
What is an lvalue and an rvalue?