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 |
write a string copy function routine?
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
What does double pointer mean in c?
What is C language ?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
I heard that you have to include stdio.h before calling printf. Why?
What is the meaning of typedef struct in c?
what is dangling pointer?
What is the difference between memcpy and memmove?
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
What is the importance of c in your views?
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?