What is define c?
Answer / Anshul Bhaskar
The keyword "define" in C is used to create macros. Macros allow users to define shorthand names for frequently used expressions, making the code more readable and maintainable.
| Is This Answer Correct ? | 0 Yes | 0 No |
how to write a bubble sort program without using temporary variable?
Can a pointer point to null?
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
Hi, main() { } Is a user defined function or Built in Functionn
How can I ensure that integer arithmetic doesnt overflow?
write a program to convert a expression in polish notation (postfix) to inline (normal)
send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
Why c is called object oriented language?
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above