What is a symbolic constant?
Answer / venkata mahesh
We can define constants of any type by using the #define
compiler directive. Its syntax is simple--for instance
#define ANGLE_MIN 0
#define ANGLE_MAX 360
would define ANGLE_MIN and ANGLE_MAX to the values 0 and
360, respectively. C distinguishes between lowercase and
uppercase letters in variable names. It is customary to use
capital letters in defining global constants.
| Is This Answer Correct ? | 1 Yes | 3 No |
What is the memory allocated by the following definition ? int (*x)();
Can you please explain the difference between syntax vs logical error?
c program for searching a student details among 10 student details
write a c program to calculate sum of digits till it reduces to a single digit using recursion
how to exchnage bits in a byte b7<-->b0 b6<-->b1 b5<-->b2 b4<-->b3 please mail me the code if any one know to rajeshmb4u@gmail.com
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
wt is diference between int and int pointer as same as float and float pointer and char and char pointer
What is the relationship between pointers and data structure?
Define macros.
How old is c programming language?
How to declare a variable?
How to write a multi-statement macro?