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 |
Differentiate Source Codes from Object Codes
Which is better oop or procedural?
What are Macros? What are its advantages and disadvantages?
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
Is there any book to know about Basics of C Language?
How can I do serial ("comm") port I/O?
Can a pointer point to null?
Why & is used in c?
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
State the difference between realloc and free.
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
what's the return value of malloc()