You're supposed to do your homework yourself. (Mind you, you have to hav at least one function called main.)
There does not appear to be a limit for the number of functions you can write within one script tag. However, you must make sure that all you functions have the appropriate beginning and ending markers.
das
naan lochana
C++
Grace = Gleis
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 the c++ program and show me brifily?
One or more. (In other words: you cannot write a program without at least one function.)
There are so many programming languages that it is impossible to tell without actually seeing the source program in question.
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 and run a client and a server program in C-language using UDP
The question is malformed and incomprehensible.
write an assembly language program to find sum of N numbers
Certainly, you can write a program without main, but you cannot build an executable from it, if that is okay with you.
write a program to print A to Z on screen in c?
Yes.
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.