Your question makes no sense.
Write a C program called MonthDays to find the number of days in a given month Test your code with different input values to demonstrate that your function is robust?
the size of an integer is determaind by using the function "sizeof(c)",here 'c' is any integer.
Given a function f(x) find any anti-derivative, F(x). The set of all possible derivatives is obtained by adding a term not involving x which can take any value. So F(x) + C is a general derivative, where C can take any value.
No, there is no such operator or function in Java that can tell you the amount of memory an object uses.
use the strrev() function on the given string and compare with original string.If both are equal they are palindromes else not.
mabye
29
ACCESS FMM stands for: Aesthetics Cost Customer Environment Safety Size Function Material Manufacturing
By reference. The name of the string is converted to a pointer (in C/C++) and given to the function as the address of the first element. (In Java, all objects are passed by reference, and there are no pointers.)
in C: strstr, declared in string.h
If it contains a decimal point or an exponential part, then it should be handled as a float (or double).You can determine an existing variable's type in C using the type() function
C does not support function overloading. Every function in the global namespace must have a unique name. However, to find the sum of n numbers, place the numbers in an array of appropriate size and pass the array to the following function: // Sum an array of n values int sum (int values[], unsigned n) { int result = 0; for (int i=0; i<size; ++i) result += values[i]; return result; }