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
Write programs for String Reversal & Palindrome check
What is wrong with this program statement?
What is linear search?
Explain what is the difference between functions getch() and getche()?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
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
How can you be sure that a program follows the ANSI C standard?
what is the syallabus of computer science students in group- 1?
Give me the code of in-order recursive and non-recursive.
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What is the difference between far and near in c?
Can math operations be performed on a void pointer?
Where can I get an ansi-compatible lint?
What is the explanation for cyclic nature of data types in c?
What are the advantages of using new operator as compared to the function malloc ()?