write a program to print infinte number
Answers were Sorted based on User's Feedback
Answer / satya
it is impossible ..
because, just think generally, we can not define a infinite
number.. so how can we print...
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / reshma
void main()
{
int i=0;
while(1)
{
printf("%d",&i);
i++;
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / reshma
void main()
{
int i=0;
while(1)
{
printf("%d",&i);
i++;
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / naresh lingampally
void main()
{
int i;
clrscr();
for(i=0;;i++)
{
printf("%d",&i);
}
getch();
}
| Is This Answer Correct ? | 2 Yes | 8 No |
how to print this pyramid * * * * * * * * * * * * *
How can I find the day of the week given the date?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
what is the mean of c languages.
What is string constants?
Explain what is the difference between far and near ?
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
What is the purpose of the statement: strcat (S2, S1)?
How can I write a function that takes a format string and a variable number of arguments?
What are pointers in C?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,