#‎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 |
Without Computer networks, Computers will be half the use. Comment.
Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments
Why c is called top down?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
How can I read a binary data file properly?
formula to convert 2500mmh2o into m3/hr
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
What's the best way to declare and define global variables?
Who is the main contributor in designing the c language after dennis ritchie?
What does the && operator do in a program code?
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?