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 |
write a program that will print %d in the output screen??
Explain the use of 'auto' keyword in c programming?
what is the difference between embedded c and turbo c ?
What is the auto keyword good for?
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
write aprogram for There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
1 Answers iGate, Shashi, Source Bits, Subex,
Write a c program to demonstrate Type casting in c?
what is the function of pragma directive in c?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
Write the control statements in C language
What are the two types of structure?
Explain how can I prevent another program from modifying part of a file that I am modifying?