Mar 17
MASS Music Player Windows Version Released
MASS Music Player(Multi Audio Surround Sound Player) is a Mp3 ,Wav,Au audio player. made by Anup Gupta(Punuptech Team Member) .It is a Multi Platform Player,which can run on various platforms like Windows,Solaris,Linux.

Procedure :
1)First Install Winrar .(Download from here if you don’t have).
2)Now Download :
if you don’t know that your system has “jre” installed ,then download complete pack,click on the Download button given below :

if you know your system has “jre” installed then download the minimal pack given below :

3)Now Click on Setup given to Install the Application.
That’s it
Regards
We are working on providing other support in the next release.
Give your feedback through comments.
Enjoy Music.
written by Anup
Jan 17
Till now,we come across that we cannot give multiple return statements and functions can return only one value at a time. This means if we do so in programming,then compiler must flash an error message?
But program will be compiled successfully.
We’ll understand this with the help of examples.
Example 1.
main()
{
int i=10,j=20;
fun(i,j);
printf(”i= %d j= “%d”,i,j);
}
fun(int p,int q)
{
p= 2*q;
q=2*p;
return(p);
return(q);
}
Output
i=10,j=20
Explanation
A call to fun() from main() sends 10 and 20 to variables p and q. In fun(), p and q are calculated and return(p) is executed,which sends the control back to main() along with the value of p. But this value is not collected in any variable in main() it just gets ignored. As a result i and j stands unchanged at 10 and 20 respectively. The statement return(q) never gets execued,since the previous return statement will not allow the control to reach there.
Example 2.
main()
{
int i=10,j=20,k;
k=fun(i,j);
printf(”k= %d,k);
}
fun(int p,int q)
{
int a.b;
a=p-q;
b=p+q;
return(a,b);
}
Output
k=30
Explanation
Whenever we are attempt to return more than one value through the return statement,the last value gets returned. Thus in this case the value of b,i.e. 30 gets returned. Had the return statement been return(b,a),the value of a would have been returned.
written by Shweta
Jan 17
If a function has to return a value to the calling function,it is done through the return statement. It may be possible that a function does not return any value; only the control is transferred to the calling function.
Syntax
return (expression);
- you can pass any number of arguments to a function but can return only one value at a time.
Example
return(5); , return (x*y); valid
return(2,3); return(x,y); invalid
- If a function does not return anything,void specifier is used in the function declaration.
- All the function’s type is by default is int i.e. a function return an integer value,if no type specifier is used in the function declaration.
Example
square(int n);
int square (int n);
Both above will return an integer value.
void square(int n);
it will not return anything.
- A function can have many return statements. This thing happens when some condition based returns are required.
Example
if((i%2)==0)
return(0);
else
return(1);
- With the execution of return statement,the control is transferred to the calling function with the value associated with it.
written by Shweta
Recent Comments