21. #define square(x) x*x
main()
{
int i;
i = 64/square(4);
printf("%d",i);
}
Answer Posted / mathuri
4
| Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
Explain how can you check to see whether a symbol is defined?
Explain how to reverse singly link list.
How can you be sure that a program follows the ANSI C standard?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
What are void pointers in c?
How does pointer work in c?
What is #pragma statements?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
Differentiate call by value and call by reference?
What is huge pointer in c?
Is null a keyword in c?
When should structures be passed by values or by references?
What is action and transformation in spark?
Is c pass by value or reference?