What is meaning of "Void main" in C Language.
Answers were Sorted based on User's Feedback
Answer / kiruthika
viod is a return type which does not return any value after
execution.
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / pravin kumar
void main is main functio in c language where :-
= void means no return of any value.
= main is the function from which a program starts its
execution.whithout main(),program can compile but not run.
both the function are used to execute the program.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / ashturkar sameer
void main means does not return valu at exicution time
mens return (0)
| Is This Answer Correct ? | 27 Yes | 31 No |
Answer / sameer ashturkar
void means simply it's return zero(0)
| Is This Answer Correct ? | 23 Yes | 30 No |
Write a factorial program using C.
What are the advantages of c language?
write a prgram of swapping with 2 valiables
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
Can the size of an array be declared at runtime?
size maximum allocated by calloc()
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered
What are high level languages like C and FORTRAN also known as?
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....