What is the difference between declaring a variable by
constant keyword and #define ing that variable?
Answer / ganesh
constant- it cannot be changed
# define - it can be changed if we can redefine
| Is This Answer Correct ? | 2 Yes | 0 No |
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
What is the difference between fork() and vfork()?
What is use of null pointer in c?
How many main () function we can have in a project?
write a program to generate 1st n fibonacci prime number
How we can insert comments in a c program?
to get a line of text and count the number of vowels in it
p*=(++q)++*--p when p=q=1 while(q<=6)
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
write a program whose output will be- 1 12 123 1234
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
If null and 0 are equivalent as null pointer constants, which should I use?