What is meant by
int fun const(int a, int b) {
....
...
}
Answer / srv
In function 'fun' we have made variable a & b constant.
It means we are never going to alter the values of varibles
(a&b).if tried then error will be messaged.
| Is This Answer Correct ? | 5 Yes | 1 No |
how to convert an char array to decimal array
What is binary tree in c?
why you will give me a job in TCS.
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
What is the sizeof () a pointer?
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
What is maximum size of array in c?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
how to construct a simulator keeping the logical boolean gates in c
Why is event driven programming or procedural programming, better within specific scenario?
Calculate 1*2*3*____*n using recursive function??
wtite a program that will multiply two integers in recursion function