What is the difference b/w main() in C language and main()
in C++.
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
there is no difference between main() in both of the
languages...... in c++ we will see all intrerms of
objects.... thats all......
| Is This Answer Correct ? | 13 Yes | 5 No |
Answer / gganesh
In c, main function will execute starting itself.
In c++, main function will execute finally
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / ayush jindal
in c & c++
the main difference is that "c" is based on top to bottom
approach.in "c"languge the header file is used as
#include<stdio.h> its also programable language.
& in c++ is based on bottom upto top approach. in c++ the
header file is used as #include<iostream.h> is used. is
also based on "object oriented program".
| Is This Answer Correct ? | 4 Yes | 5 No |
Answer / ayush
there is no difference b/w in c & c++ in main() function.
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / sagarika
In C language , main() does not return any value.
Hence there is no need of return type whereas in c++ main
returns the value. if there is no return type we should
specify it by writing the keyword void before main.
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / ppp
In c:
int main(){ void main(){
..... .......
..... OR ......
return 0; }
}
| Is This Answer Correct ? | 2 Yes | 6 No |
Answer / kishan gowda
Ther is a difference b/w c and c++ main()...After execution
of int main() in c it returns zero on null to the operating
system where as in c++ it returns 1 to the O.S.
Ex:
In c:
int main(){ void main(){
..... .......
..... OR ......
return 0; }
}
In C++:
int main(){ int main(){
..... .......
..... OR ......
return 1; }//by default it retruns 1.
}
| Is This Answer Correct ? | 5 Yes | 12 No |
program that accepts amount in figures and print that in words
2 Answers Infosys, Lovely Professional University, Wipro,
write a code for large nos multilication (upto 200 digits)
What is the scope of local variable in c?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me
what is the meaning of 'c' language
hi folks i m approching for h1 b interview on monday 8th of august at montreal and i m having little problem in my approval notice abt my bithdate my employer has made a mistake while applying it is 12th january and istead of that he had done 18 the of january do any body have any solution for that if yes how can i prove my visa officer abt my real birthdate it urgent please let me know guys thaks dipesh patel
control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent
can we implement multi-threads in c.
Is fortran still used today?
What is the difference between exit() and _exit() function?