answersLogoWhite

0

Your question makes no sense.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

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?

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?


How do you print size of integer?

the size of an integer is determaind by using the function "sizeof(c)",here 'c' is any integer.


How can you write a function that represents all possible antiderivatives of a given function?

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.


How do you find size of any object in java OR is there any operator or fun.. equivalent size of in c plus plus?

No, there is no such operator or function in Java that can tell you the amount of memory an object uses.


Wap in c plus plus to find out the string is palindrome or not in?

use the strrev() function on the given string and compare with original string.If both are equal they are palindromes else not.


C r is a circumference function find C 5 when C r equals 6.28r?

mabye


Given ABCD find the length of c?

29


What does access fmm stand for?

ACCESS FMM stands for: Aesthetics Cost Customer Environment Safety Size Function Material Manufacturing


How are the strings passed to a function?

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.)


Function finds the occurrence of a given string in another string?

in C: strstr, declared in string.h


How do you find by program a given number is integer or float?

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 program to find sum of n numbers using functions over loading?

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; }