What is the output of the program given below
#include<stdio.h>
main()
{
char i=0;
for(;i>=0;i++) ;
printf("%d\n",i);
}
Answer Posted / stuti
1
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What are pointers? What are stacks and queues?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
Do you know pointer in c?
Explain how do you convert strings to numbers in c?
What is the difference between pure virtual function and virtual function?
What is c token?
Explain what is operator promotion?
Can you write the function prototype, definition and mention the other requirements.
Which is an example of a structural homology?
What is the difference between struct and typedef struct in c?
formula to convert 2500mmh2o into m3/hr
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What is c language in simple words?
Explain spaghetti programming?
When is a “switch” statement preferable over an “if” statement?