Answer Posted / reshma
void main()
{
int i=0;
while(1)
{
printf("%d",&i);
i++;
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why is c so important?
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
Which is best book for data structures in c?
What is hashing in c?
What is the function of multilevel pointer in c?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What is assert and when would I use it?
what do you mean by inline function in C?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
number of times a digit is present in a number
What are the types of macro formats?
Here is a good puzzle: how do you write a program which produces its own source code as output?
What is preprocessor with example?
Differentiate between new and malloc(), delete and free() ?
How can I manipulate individual bits?