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
How to delete a node from linked list w/o using collectons?
Is c procedural or functional?
Explain the meaning of keyword 'extern' in a function declaration.
Place the #include statement must be written in the program?
What is the sizeof () operator?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
What does 3 periods mean in texting?
What is methods in c?
Why can’t we compare structures?
How can a number be converted to a string?
If you know then define #pragma?
What is a structural principle?
What is the main difference between calloc () and malloc ()?
Is it better to use malloc() or calloc()?
Explain how can I open a file so that other programs can update it at the same time?