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
How can I make sure that my program is the only one accessing a file?
Write a program of prime number using recursion.
What are 'near' and 'far' pointers?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is the explanation for the dangling pointer in c?
Ow can I insert or delete a line (or record) in the middle of a file?
Where does the name "C" come from, anyway?
What is meant by errors and debugging?
Differentiate between the expression “++a” and “a++”?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
How many parameters should a function have?
Write a program to use switch statement.
code for replace tabs with equivalent number of blanks
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
What is the purpose of void pointer?