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 |
Write a C program to perform some of the operation which can be performed using Single linked list
What is malloc calloc and realloc in c?
Why calloc is better than malloc?
Explain what is the concatenation operator?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is the diffrent between while and do while statement ?
write a program to swap Two numbers without using temp variable.
75 Answers EMC, Focus, GreyB, HCL, Hitech, HP, Huawei, Infosys, Mannar Company, Microsoft, Miles Software, Odessa Technologies, Satyam, TCS, Wipro,
How to write a program for swapping two strings without using 3rd variable and without using string functions.
how can we use static and extern?and where can we use this?
c program to arrange digits in a no in ascending and descending order
How to declare a variable?
What is the difference between array and pointer?