answersLogoWhite

0

Mansa Musa was an excellent leader and one of Africa's greatest Muslim kings.

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

What do you call an argument that only has a copy of the arguments value and will not be affected by the method?

That is called passing an argument by value.


What is the plural form for arguments?

Arguments is in the plural form for the singular noun argument.


What is meant by arguments in c?

Arguments appear in functions and in function calls. Arguments passed to a function are known as actual arguments. The arguments used by the function are known as the formal arguments. In C, all arguments are passed by value, such that the formal argument is a copy of the actual argument.


When argument are passed by value the function works with the original arguments in the calling program?

When a function is passed by value the calling function makes a copy of the passed argument and works on that copy. And that's the reason that any changes made in the argument value does gets reflected to the caller.


Ask us of the following arguments is an argument of consequence?

Can you provide the arguments so that I can determine if it is an argument of consequence?


Sample program in c plus plus with parameter?

C++ doesn't have parameters it has arguments, both formal and actual. Actual arguments are the arguments you pass to a function. Formal arguments are the arguments used by the function and which are treated as local variables within the function body. Formal arguments always fall from scope when the function returns. In order for a function to make changes to the actual argument you you can either return the formal argument by value and assign the function to the actual argument upon return, or you can pass the argument by reference. In the former case, the returned value is temporary. If the function is not assigned to the actual argument, the temporary value falls from scope. In the latter case, the actual and formal arguments both refer to the same object through separate names (aliases). Thus any operations performed on the formal argument will affect the actual argument (they are one and the same object). Example: // Forward declarations. int byval (int); void byref (int&); int main() { int actual = 42; byval (actual); // The byval formal argument is no longer in scope. // Although a temporary value of 84 was returned, // it wasn't assigned to anything and is no longer // available. // The actual argument still has the value 42. actual = byval (actual); // The byval formal argument is no longer in scope, // however, its value was returned and assigned // to the actual argument. // The actual argument now has the value 84. byref (actual); // The formal argument and the actual argument are // one and the same argument. // The actual argument now has the value 42. } int byvalue(int formal) { formal *= 2; return formal; } // The formal argument no longer exists, but its value // was pushed into the function's return address. That // value will cease to exist unless the caller immediately // assigns the function's return value to a variable. void byref(int& formal) { formal /= 2; } // The formal argument no longer exists and nothing // was pushed onto the function's return address. // However, formal was just an alias for the actual // argument, thus the actual argument has already // been updated.


Are all valid arguments cogent arguments?

No, not all valid arguments are cogent. A valid argument is one where the conclusion logically follows from the premises, while a cogent argument is a valid argument with true premises. In other words, cogent arguments are a subset of valid arguments.


What arguments are optional and not required for the PMT function in MS Excel?

The FV and Type arguments are optional in the PMT function.


All valid arguments are sound arguments?

No, but all sound arguments are valid arguments. A valid argument is one where the conclusion follows from the premises. A sound argument is a valid argument where the premises are accepted as true.


How would you reply to strongs arguments?

No, arguments can either be strong or weak, however, a valid argument would be considered a sound argument. The opposite would be an invalid argument.


How would you reply to josiah strong arguments?

No, arguments can either be strong or weak, however, a valid argument would be considered a sound argument. The opposite would be an invalid argument.


Why you use pointers?

Because you can produce fast and efficient code. Function arguments are passed "by value", and so you can't change the original value of the argument, but if you use pointers, you can.