How to access or modify the const variable in c ?
Answer Posted / skp
@Answer #7 - Answer of #6 is correct.
In Dev C++ the output is as answer #6.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
define string ?
what are the advantages of a macro over a function?
What are the similarities between c and c++?
Is void a keyword in c?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What is chain pointer in c?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
How can I determine whether a machines byte order is big-endian or little-endian?
What is a built-in function in C?
Can we change the value of #define in c?
In c programming language, how many parameters can be passed to a function ?
write a program to concatenation the string using switch case?
What is integer constants?
What is the difference between array and linked list in c?
How can I call a function with an argument list built up at run time?