answersLogoWhite

0


Best Answer

http://search.live.com/results.aspx?mkt=en-IN&q=a1y7w461.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Define arguments in C with example?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you pass in Anna university chennai?

Define c-program and give an example


How can define date data type in c structure?

struct tm can be an example.


Define editorial of argumentation?

It means that the editors will talk about arguments :))


Four commitments that define social parameters of arguments?

honesty, integrity, morals,


What are default arguments in c?

Nothing.


What is the use of define key word in c?

Actually, the preprocessor is not part of the C compiler, but here you are: #define is meant to define symbols. Examples #define NULL ((void *)0) #define getchar() getc(stdin)


What parameter to a function is one for which an automatic value is supplied if do not explicitly use one in C programming?

You are referring to default arguments. However, C does not support default arguments. That's a C++ feature.


How do you pass command line arguments using turbo in c compiler?

In the Options menu the Arguments command.


Which class is used to define the controls in c sharp?

.Ascx class file is used to define the controls in c#


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.


How do you write c file arguments?

Using parameters argc and argv, and library functions fopen, fprintf, fclose


Can you declare default constructor as private?

Yes, but that means you can't define an instance of the class without arguments to new.