answersLogoWhite

0

Function gets returns

User Avatar

Anonymous

16y ago
Updated: 8/17/2019

Yes, it does return. There are only few functions that do not return, like exit, exec, longjmp.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What actually happens when function get called how the compiler is reading the next instruction after completing that function?

When a function gets called, the processor first stores the address of the calling function in a structure called activisation structure and jumps to the called function. Then it allocates the memory for the local variables and initializes them. Then it does the processing in that function. After that it deallocates the memory allocated for the local variables and returns to the calling function. When a function gets called, the processor first stores the address of the calling function in a structure called activisation structure and jumps to the called function. Then it allocates the memory for the local variables and initializes them. Then it does the processing in that function. After that it deallocates the memory allocated for the local variables and returns to the calling function.


What movies is it when a man gets shot falls into pool returns as a girl and gets shot again and returns as a dog?

Its not a movie, its the life of Jesus.


Steve feeds his cat in the morning before going to work The later he stays at work the less food there will be in the bowl when he gets back?

The amount of food left in the bowl when Steve returns from work is a function of how late he works.


Can you pay all taxes at end of year if on pension?

Yes, If i gets pension more than IT returns then surely i submit returns & pay taxes.


A man gets a package opens it and returns it to senderthe next day his car breaks down and he gets out to hitchhike a truck pulls over and a man gets out and shoots him what was in the package?

gun


A function that decreases proportionally to it's current value. The smaller the function gets the faster it decreases.?

The logarithmic function is one such.


If a runner gets picked off but returns to the base safely is it an error?

no because if he made it safely he is A OK


What is a main function in c plus plus?

It is the first function that gets called when the program is executed.


In c language strings why gets function allows blank spaces but scanf function does not?

The 'gets' routine is designed to return all characters up to the end of the line, including embedded spaces.The 'scanf' routine returns values based on a format; if you are using the %s format conversion, it will stop when it encounters a white-space character (such as the space).The two routines are used for different things. With 'gets' it is assumed that you will parse and convert anything in the line yourself, whereas the scanf routine helps to parse items out in the format that you want (most of the time).see: In_c_language_strings_why_gets_function_allows_blank_spaces_but_scanf_function_does_not


What going to happen in Tracy beaker returns when Liam get jailed?

He gets out again but soon after he is making more trouble


A line is an for a function if the graph of the function gets closer and closer to touching the line but never reaches it?

asymptote


Use of gets in c?

Gets reads the next input line into an array ; it replaces the terminating newline with '\0'. it returns the array or null if end of file or error occurs.