answersLogoWhite

0

You're supposed to do your homework yourself. (Mind you, you have to hav at least one function called main.)

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is the importance of functions in a c plus plus program?

Functions are very important in C++, as you can't write the simplest program to print hello without using a function. Overall you can say that function are building blocks of a C++ program. Functions can also be defined by the programmer to reduce program size.


Write a program to illustrate the usage of pointers with arrarys and functions?

* * * * * * * * * * write the c++ program and show me brifily?


How many functions in c progamming?

One or more. (In other words: you cannot write a program without at least one function.)


Which language is used to write a source program in computer?

There are so many programming languages that it is impossible to tell without actually seeing the source program in question.


Write a program in C without any functions?

It is not possible. In C, any program must have at least one function to be able to compile and execute properly: the function main()


Write Client and server program in C language using UDP?

Write and run a client and a server program in C-language using UDP


Write a program in C language to multiply any two numbers without using in source code?

The question is malformed and incomprehensible.


How do you write an assembly language program to find the sum of n numbers using array?

write an assembly language program to find sum of N numbers


Can you write a program without main in c?

Certainly, you can write a program without main, but you cannot build an executable from it, if that is okay with you.


Write an assembly language program to print a to z on screen?

write a program to print A to Z on screen in c?


Can you write program by c language in dos?

Yes.


What is the purpose of function in PHP program?

The function keyword in PHP allows users to define functions beyond those built into the language, like so: function isFour ($number) { return $number == 4; }Functions in any language, including PHP, allow the developer to re-use their code. Without functions all of the code required to do the simplest of tasks must be re-written constantly; but with functions you must only write the code once and then call it whenever needed.