When is the “void” keyword used in a function?
When used as a function return type, the void keyword specifies that the function doesn't return a value. When used for a function's parameter list, void specifies that the function takes no parameters. When used in the declaration of a pointer, void specifies that the pointer is "universal."
| Is This Answer Correct ? | 0 Yes | 0 No |
Meaning of () in c
how to devloped c lenguege?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
what is the height of tree if leaf node is at level 3. please explain
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
Write a program to swap two numbers without using a temporary variable?
What is a program flowchart and explain how does it help in writing a program?
code for concatination of 2 strings with out using library functions?
What is wrong with this program statement? void = 10;
What is void main () in c?