Answer Posted / anu
void main() is a function. It is used in a program when a
function has no return value.
| Is This Answer Correct ? | 19 Yes | 0 No |
Post New Answer View All Answers
What does it mean when the linker says that _end is undefined?
Is c easy to learn?
What are pointers? What are different types of pointers?
What is the heap?
What are enums in c?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
Why n++ execute faster than n+1 ?
Describe static function with its usage?
What is || operator and how does it function in a program?
Who invented b language?
What is the purpose of clrscr () printf () and getch ()?
What are dangling pointers? How are dangling pointers different from memory leaks?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
If the size of int data type is two bytes, what is the range of signed int data type?