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
How do I swap bytes?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
Write a program to print all permutations of a given string.
Does c have circular shift operators?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Can variables be declared anywhere in c?
Simplify the program segment if X = B then C ← true else C ← false
What is operator precedence?
What are identifiers in c?
What is const and volatile in c?
What are the benefits of c language?
What is a keyword?
explain what is a newline escape sequence?
What is the significance of an algorithm to C programming?