Write a program for print infinite numbers
Answers were Sorted based on User's Feedback
Answer / chavidi
void main()
{
int i=0;
while()
{
printf("%d",i)
i++;
}
}
| Is This Answer Correct ? | 25 Yes | 12 No |
Answer / shani jaiswal
main()
{
static int i=0;
printf("%d",i);
i++;
main();
return 0;
}
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / greg
#include <math.h>
static void checkinfinit(double x)
{
if (isinf())
{
printf("Infinite\n");
}
}
int main(int argc, char **argv, char **envp)
{
checkinfinite(1.0);
}
| Is This Answer Correct ? | 3 Yes | 1 No |
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
what is bitwise operator?
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
differnce between do and do while
program to find a smallest number in an array
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
What is c variable?
what is unsigened char and what is the difference from char
can we define a function in structure?
Is c still used?
What is #line?
Function calling procedures? and their differences? Why should one go for Call by Reference?