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 / mohmedali
0
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
How we can insert comments in a c program?
Discuss the function of conditional operator, size of operator and comma operator with examples.
What is p in text message?
What are pointers? Why are they used?
How do you initialize pointer variables?
please send me the code for multiplying sparse matrix using c
Explain what are the different file extensions involved when programming in c?
When c language was developed?
Describe the header file and its usage in c programming?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Explain how can I manipulate strings of multibyte characters?
What are global variables?
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