answersLogoWhite

0

The return statement is used in functions to return control to the caller. If the function is declared non-void, the return statement also allows the programmer to return a value to the caller.

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

How does return statement work in vb?

No Return statement in VB programming


What is the use of return function in C programming?

To return the exp. or const to the main fumction.


What an example of a function?

In C-programming: int main (void) { return 0; }


What does crlf mean?

In computer programming, cr is carriage return, lf is line feed.


What is void command in c sharp programming?

void simply means you don't have anything to return w/in a function, it is the same as return 0; public void sample() { MessageBox.Show("This Function do not return anything"); }


Will Cartoon Network return to its original programming with Cartoon Cartoon?

No.The original programming (most not all) Cartoon Network acquired to air when the network debuted as been moved to Boomerang.


How is the code return in higher programming languages like C and C converted into binary language?

By using a compiler.


How do you get decimal values in shell programming?

use $((2#<decimal value>)) eg. $((2#101001)) will return 41


How do you make a proposal in C programming?

#include <stdio.h> int main (void) { puts ("Marry me"); return 0; }


How does the compiler differentiate the statement and function in C programming?

statement should not return a value but function returns a value


What is return means in programming?

A return statement exits the function in which it is declared and gives control to the calling code. Returning from the main function exits the program and gives control to the execution environment.


How can you write a c programming which say you that day is holyday?

int main (void) {puts ("day is holyday");return 0;}