wat is the output
#define VOLEDEMORT _who_must_not_be_named
int main()
{
printf("VOLEDEMORT");
}
Answers were Sorted based on User's Feedback
Answer / gorgeousgirl
VOLEDEMORT
reference:
http://codepad.org/Uks2ydDu
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sinchan garai
just
VOLEDEMORT
nothing more or less than that.
| Is This Answer Correct ? | 3 Yes | 1 No |
What is size of union in c?
What is c language and why we use it?
Is c a great language, or what?
what do you mean by defining a variable in our c code?
What is the data segment that is followed by c?
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
What is const keyword in c?
What is signed and unsigned?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
Explain union.