Answer Posted / vignesh1988i
1025
| Is This Answer Correct ? | 3 Yes | 7 No |
Post New Answer View All Answers
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
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.
Explain what are bus errors, memory faults, and core dumps?
Why is not a pointer null after calling free?
Explain can static variables be declared in a header file?
Explain what is the benefit of using const for declaring constants?
What is bash c?
What are pointers?
What is pointer in c?
What are the 4 types of functions?
What is the use of a semicolon (;) at the end of every program statement?
can anyone please tell about the nested interrupts?
What is an lvalue?
what is different between auto and local static? why should we use local static?
Why can’t constant values be used to define an array’s initial size?