answersLogoWhite

0

it returns nothing

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Can you use the float as a return type of the main function in 'C' language?

No, it should be int type or void.


What is the function of void main in c language?

Actually, it is:int main (void)orint main (int, char **)the point where the execution of the program begins


Why to write void main in c programing?

it is always not necessary to write "void main " in c programming.it depends on the source code we use if we have to return a value then void is not necessary because void returns the null.While coding in borland C++ we need to write void main but we dont need it in dav c++.In C (and C++) the standard allows int main (void) and int main (int argc, char **argv)


What are the errors in c language?

You can produce many different errors, here is an example: int main (void) { *(char *)main = 'A'; return 0; }


What is fast code execution C language?

example: int main (void) { puts ("That's all"); return 0; }


How do you find percentage in c language?

#include<stdio.h> void main() { float a=20,b=5,c=0; c=(a+b)/2; printf("%f",c); getch() }


One line programme in c language?

int main (void) { printf ("One line programme\n"); return 0; }


What is the ASCII value of white space in c language?

int main (void) { printf ("space is %d\n", ' '); return 0; }


Why you use void res in c programming?

since, the word 'void' in C programming language means that it does not return any value to the user or calling function....this is usually used to specify a type of function...... for this reason w use 'void'in c program..


What is the role of void in functions of c?

this is a void main()int, char, are execution the program and it is not return the void.


How do you write all c language code in one line?

Simply don't use Enter key. (You cannot use preprocessor though.) int main (void) { puts ("All in one line"); return 0; }


Where void main is called in c?

main() is the function from where the execution starts.