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 / rekha
It will print 0 to 127
| Is This Answer Correct ? | 6 Yes | 6 No |
Post New Answer View All Answers
Differentiate between calloc and malloc.
What's the best way of making my program efficient?
Why malloc is faster than calloc?
What is 'bus error'?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is malloc() function?
What are types of preprocessor in c?
Which are low level languages?
How do you declare a variable that will hold string values?
What is difference between structure and union in c programming?
how to build a exercise findig min number of e heap with list imlemented?
Difference between strcpy() and memcpy() function?
What is function prototype in c language?
Is there a way to compare two structure variables?