Answer Posted / reshma
void main()
{
int i=0;
while(1)
{
printf("%d",&i);
i++;
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is typedef struct in c?
What is the right way to use errno?
Why should I prototype a function?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
Explain the difference between the local variable and global variable in c?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
What are the 4 types of unions?
What is the difference between union and anonymous union?
How can you restore a redirected standard stream?
What are different types of variables in c?
Tell me what are bitwise shift operators?
Can include files be nested?
Explain what is the difference between #include and #include 'file' ?
What are header files in c?
Which control loop is recommended if you have to execute set of statements for fixed number of times?