What is the use of define in c?
Answer / Pravin Kumar
In C programming, '#define' is a preprocessor command used to replace a sequence of characters (macro) by another sequence of characters or numerical value before compilation. It can be used for creating abbreviations or symbols with fixed values.
| Is This Answer Correct ? | 0 Yes | 0 No |
Linked lists -- can you tell me how to check whether a linked list is circular?
What is the relationship between pointers and data structure?
do ne body have any idea about the salary for the we r going to have interview. yup .. u got it right ..i m talking abt NIC.
Explain main function in c?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
What are the 4 types of functions?
what is object oriental programing?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is equivalent to ++i+++j?
What does 1f stand for?
HOW DO YOU HANDLE EXCEPTIONS IN C?
Explain the use of 'auto' keyword