UrbanPro

Learn C++ Language from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

What is the main difference between returning value of a function and does not return any value of a function in  C. Which is correct void main(void), int main(void), int main(int) , or void main(int) and explain the main difference between int main() and int main(void). 

Asked by Last Modified  

Follow 15
Answer

Please enter your answer

Tutor

A function may or may not return a value to the calling function. If the function is returning a value, then you have to mention the data type in the function definition and funtion declaration (like int, float or double etc.). If the funtion not returning any value, then you have to mention the data...
read more

A function may or may not return a value to the calling function. If the function is returning a value, then you have to mention the data type in the function definition and funtion declaration (like int, float or double etc.). If the funtion not returning any value, then you have to mention the data type as void. If you not mention return type, then compiler take it as int data type.

 Similary, a function  may have arguments or not. If your functions have arguments, then you have to mention data types of arguments. If you are not passing any arguemtns then you may write void or simply live it blank that is depend upon the compiler. main() is a user defined function, so it follows the same rules.

read less
1 Comments

Tutor

Hi, Thanks for A2A, your 1st question is "What is the main difference between the returning value of a function and does not return any value of a function in C". the main difference between both types of the function will be its return type as the function which will not return any value will have...
read more

Hi, Thanks for A2A, your 1st question is "What is the main difference between the returning value of a function and does not return any value of a function in  C". 

the main difference between both types of the function will be its return type as the function which will not return any value will have return type "void" which means nothing wherein function with the return value should have a return type "data type" int, char, struct so ....on..while declaring/defining both !! and one more major difference will be, function with no return type (or can say void return type ) don't need any additional variable to save its return value wherein function with return value may have addition variable or additional check for return value !! 

 now coming to your 2nd question "Which is the correct void main(void), int main(void), int main(int), or void main(int) and explain the main difference between int main() and int main(void)" 

ans: best practice is to use int main(void) if it does not have command line arguments !! now using void main(void) is fine but gives warning in some compilers as the main function expected to return integer value !! now int main(int) is incorrect !!

read less
1 Comments

Training Centre

Void main(int) is the correct answer.
2 Comments

Trainer

Hi, First we understand what a function is? A function is a peice of code that can be used for code reusability. For example we are creating a calculator. Either we can write everything inside main() or for better reusability we write add, subtract etc different functions. We can call these function...
read more

Hi, First we understand what a function is? A function is a peice of code that can be used for code reusability. For example we are creating a calculator. Either we can write everything inside main() or for better reusability we write add, subtract etc different functions. We can call these function whenever the needed without repeating the code. Now coming to your question function may or may not return value that depends on requirement. For example we can print add function output inside the function scope. But sometime we need that output for further calculation than we can return output of add function.

read less
Comments

JS Academy in Association With Cryptic Technologies Pvt. Ltd.

1. Both type of function can exactly the same, only difference is that return type function return some value so it can be used in expression. Non return type function doesn't return any value so it can't be used in expression. 2. The main is also a function so it can be either return type or non return...
read more

1. Both type of function can exactly the same, only difference is that return type function return some value so it can be used in expression. Non return type function doesn't return any value so it can't be used in expression.

2. The main is also a function so it can be either return type or non return type.

 

Return type main function looks like this...

int main(void) {

 return 0;

}

 

Non return type main function looks like this...

void main(void) {

 

}

 

 

int main(int) {

 // This is incorrect...

}

 

read less
Comments

Whenever you put return type as int, your program always return success code to operating system which is integer value. If you use void as return type of main then your program does not return any indication to operating system. Returning int is good programming practice always. Hope this help....
read more

Whenever you put return type as int, your program always return success code to operating system which is integer value.  If you use void as return type of main then your program does not return any indication to operating system.  Returning int is good programming practice always. 

 

Hope this help. 

 

Regard, 

Sam J

www.myVuniversity.com

read less
Comments

Int main(void)--- it can be called only with a function call having no parameters. But int main() can be called by a function with any no.of parameters. int main(void) returns 0 if the program is successfully executed. void main(void) does not return anything. it is a good practice to return some...
read more

Int main(void)--- it can be called only with a function call having no parameters.

But int main() can be called by a function with any no.of parameters.

int main(void)  returns 0 if the program is successfully executed. 

void main(void) does not return anything.

it is a good practice to return some value in any program to know the succesful execution.

 

read less
Comments

I have 17+ years teaching experience. I am good at subject I teach.

int main() by default returns int value. int main(void) will not return anything
Comments

Computer Wizard

int main(void) is the good practice, returning int indicates operating system that programs succesfully finished. If we use main(void) it means main fuction can be called without arguments and main() can be called with arguments.
Comments

IT Professional Development with 5+ years and 3+years IT trainer experience

Hi,If you use int main() it return something..so we mentioned return 0; if you use void main() --void does not return any values.
Comments

View 10 more Answers

Related Questions

Explain about protected internal access specifier?
protected access specifier is used in inheritance. Base class members are made accessible to its sub classes through protected access specifier. This access specifier works with in inheritance.
Sahiba
0 0
7
Which language is best, C, C++, Python or Java?
If you want to learn any languages C#, Java, ect. then must to learn C, C++ language as these are base or language to be strong in language skills. C++ is improved version of C language. C#, Java, J# and etc. which are improved version of C++.
Sribaghya
0 0
6
what is method over-riding and how it is used ? if possible send with code with output or screen photo ?
Method over-riding : it is a technique in which more then one function with same name and same signature( similar type parameter) can present in program. in overriding a subclass method overrides the definition...
Sayyad
0 0
5
What is different between malloc and calloc?
The Diffrences are like-- malloc() takes a single argument (memory required in bytes), while calloc() needs two arguments. Secondly, malloc() does not initialize the memory allocated, while calloc() initializes...
Roopali
What is a class?
Class is User defined data type, its contain data members and member function
Thinagaran
0 0
7

Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com

Ask a Question

Related Lessons

Compiler vs Interpreter
Compiler Interpreter Convert all the code into binary format and execute. Convert one statement at a time and execute, then Convert next statement and execute. After conversion, source...

Implicit Typecasting & Explicit Typecasting
In C++ it is possible to cast child class reference variable to parent class Reference. When ever we are Converting a derived-class reference or pointer to a base-class reference or pointer is called...

Tress And Its Traversal
Depth First Traversals:(a) Inorder (Left, Root, Right) : 4 2 5 1 3(b) Preorder (Root, Left, Right) : 1 2 4 5 3(c) Postorder (Left, Right, Root) : 4 5 2 3 1 Trees are one of the data structures like...

How are C And C++ Different Form Each Other
1.C and C++ both have data types operator and conditional looping control statements. But the difference is that C++ has to object-oriented concepts which C programs do not have. Hence C program is like...

Importance Of Function Prototype In C
Function prototype tells compiler about number of parameters function takes, data-types of parameters and return type of function. By using this information, compiler cross checks function parameters and...

Recommended Articles

Introduction C++ is an excellent programming language and many of the applications are written in C++ language. It has generic, object-oriented & imperative programming features, and also provides facilities for low-level memory manipulation. Successor of C language, it is an OOP (object oriented programming) language...

Read full article >

Hadoop is a framework which has been developed for organizing and analysing big chunks of data for a business. Suppose you have a file larger than your system’s storage capacity and you can’t store it. Hadoop helps in storing bigger files than what could be stored on one particular server. You can therefore store very,...

Read full article >

Almost all of us, inside the pocket, bag or on the table have a mobile phone, out of which 90% of us have a smartphone. The technology is advancing rapidly. When it comes to mobile phones, people today want much more than just making phone calls and playing games on the go. People now want instant access to all their business...

Read full article >

Whether it was the Internet Era of 90s or the Big Data Era of today, Information Technology (IT) has given birth to several lucrative career options for many. Though there will not be a “significant" increase in demand for IT professionals in 2014 as compared to 2013, a “steady” demand for IT professionals is rest assured...

Read full article >

Looking for C++ Language Classes?

Learn from the Best Tutors on UrbanPro

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you
X

Looking for C++ Language Classes?

The best tutors for C++ Language Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn C++ Language with the Best Tutors

The best Tutors for C++ Language Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more