Answer Posted / naresh lingampally
void main()
{
int i;
clrscr();
for(i=0;;i++)
{
printf("%d",&i);
}
getch();
}
| Is This Answer Correct ? | 2 Yes | 8 No |
Post New Answer View All Answers
What is wild pointer in c with example?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What is hash table in c?
What is the importance of c in your views?
Is c pass by value or reference?
Why c language?
Explain the difference between the local variable and global variable in c?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What are the functions to open and close the file in c language?
All technical questions
Explain spaghetti programming?
What is the difference between struct and typedef struct in c?
The file stdio.h, what does it contain?
How does pointer work in c?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?