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
Where static variables are stored in c?
Explain how can I manipulate strings of multibyte characters?
Why can't I perform arithmetic on a void* pointer?
Is r written in c?
Can a void pointer point to a function?
What is the use of putchar function?
Why doesnt long int work?
What is dynamic memory allocation?
What is a ternary operator in c?
Write a code to generate a series where the next element is the sum of last k terms.
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
Explain how can I make sure that my program is the only one accessing a file?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What is the easiest sorting method to use?
explain how do you use macro?