#‎include‬<stdio.h>
void main()
{
int i;
for(i=5;0;i++)
{
printf("%d",i);
}
}
Answers were Sorted based on User's Feedback
Answer / khushbu srivastva
a error will be generated i.e unreachable code
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / deepika agrawal
an error will be encountered in the begining of the program...
| Is This Answer Correct ? | 2 Yes | 0 No |
What is the value of c?
What is the difference between the local variable and global variable in c?
What is the difference between procedural and functional programming?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
print the following using nested for loop. 5 4 3 2 1 1 2 3 4 3 2 1 1 2 1 2 1 1 2 3 4 3 2 1 1 2 3 4 5
what is foreign key in c language?
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
Is return a keyword in c?
How does sizeof know array size?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
What is call by value in c?