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 / aryan
-128
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the difference between malloc calloc and realloc in c?
show how link list can be used to repersent the following polynomial i) 5x+2
What is the c value paradox and how is it explained?
what are bit fields in c?
Explain what are reserved words?
What is property type c?
Why we use void main in c?
Explain what is output redirection?
How does placing some code lines between the comment symbol help in debugging the code?
Is python a c language?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is the difference between struct and typedef struct in c?
How can I remove the leading spaces from a string?
Can we declare variables anywhere in c?
What is a 'null pointer assignment' error?