What is meant by
int fun const(int a, int b) {
....
...
}
Answer Posted / 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 |
Post New Answer View All Answers
What does %p mean c?
What are the uses of null pointers?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
What are valid signatures for the Main function?
What is cohesion and coupling in c?
What does it mean when the linker says that _end is undefined?
What is a ternary operator in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
`write a program to display the recomended action depends on a color of trafic light using nested if statments
while initialization of array why we use a[][2] why not a[2][]...?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What are the different file extensions involved when programming in C?
What is structure data type in c?
What is the advantage of c?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9