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
1
| Is This Answer Correct ? | 1 Yes | 8 No |
Post New Answer View All Answers
write a c program in such a way that if we enter the today date the output should be next day's date.
What is function pointer c?
What is the function of multilevel pointer in c?
What do you mean by dynamic memory allocation in c? What functions are used?
What is wrong with this statement? Myname = 'robin';
What does the function toupper() do?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is the difference between local variable and global variable in c?
What is function prototype?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
why programs in c are running with out #include
What are the properties of union in c?
How can I discover how many arguments a function was actually called with?
What are actual arguments?
What should malloc() do?