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 are pointers in C?
How to implement a packet in C
What is a string?
#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
What is the use of pragma in embedded c?
what is the return type of printf
What is a pointer on a pointer in c programming language?
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
how is the examination pattern?
What is difference between structure and union?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.