answersLogoWhite

0

This question cannot be answered without seeing the source program.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

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.


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


The main method of a program has?

The Java main method of a program is the place where the program execution begins. A main method would look like below public static void main(String[] args){ }


Why do you write void to the first of main in c?

This is really unclear. If you're asking why you should write void main() then the answer is that you shouldn't. main can return an int as an error code, so it's better to do int main() instead.


Write a c program to have followiing as output?

void main() { printf("followiing"); }


Where does the main function starts and end in c program?

The entry point of a C program is the main function.The function signature might be like one of these:1. int main (void)2. int main (int argc, char *argv[])


When 'public static void main' used in java?

That is the signature for the main program. The main program is the starting point, where execution starts - from there, other programs may be invoked.


Why void is restriction in java main function?

becoz the main program doesnot return any value to the os.


A program in c?

int main (void){puts ("Hello world") ;return 0 ;}


Write a program for 3x3 matrix?

#include<stdio.h> #include<conio.h> void main()


If we interchange public static and void main then what happens?

Making main static is probably not a good idea; it may keep the linker from recognizing the program entry point. main is not a method, so it cannot be anything but public, for all intents and purposes. Declaring main to have a void return and/or with a void argument list is usually harmless, although it limits how your program can interact with the OS.


What is the c program to find fibnocci series?

#include<stdio.h> #include<conio.h> void main() { }