What is the difference between void main() and int main()?
Answer / 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 |
fn f(x) { if(x<=0) return; else f(x-1)+x; }
Explain how do you view the path?
Is c programming hard?
Is null always defined as 0(zero)?
what is the difference between procedure oriented and object oriented progaming language
print ur name without using any semicolon in c/c++....
21 Answers Bosch, TCS, Wipro,
What are the concepts introduced in OOPs?
What is the purpose of the statement: strcat (S2, S1)?
Is fortran faster than c?
Define VARIABLE?
What do you know about the use of bit field?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?