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 the salient features of c languages?
Write a program to print all permutations of a given string.
Which is an example of a structural homology?
Write a C program to read the internal test marks of 25 students in a class and show the number of students who have scored more than 50% in the test. Make necessary assumptions.
What does %p mean?
If we give two names then this displays the connection between the two people. It is nothing but flames game
How do I convert a string to all upper or lower case?
write a program to print infinte number
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
what is Structural oriented language? give some example of this language.....?
How to print India by nested loop? I IN IND INDI INDIA
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?