What is the difference between void main() and int main()?
Answer Posted / nashiinformaticssolutions
void main() is not standard; int main() is required by the C standard to return an integer.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does the characters “r” and “w” mean when writing programs that will make use of files?
What are the different categories of functions in c?
write a program to copy the string using switch case?
What is line in c preprocessor?
what is bit rate & baud rate? plz give wave forms
Who developed c language?
What are the types of type specifiers?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
How can I call a function with an argument list built up at run time?
What is a string?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Why & is used in scanf in c?
What is union and structure?