print 1-50 with two loop & two print Statement
Answers were Sorted based on User's Feedback
Answer / ksambhaji999
For(i=1;i<50;i=i
+2)
{ printf
("%d",i);
for(j=2;j<51;j++)
{ printf
("%d",j);}
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ravindra kushwaha
for(int i=1;i<=25;i++)
{
printf("%d",i)
}
for(int j=25;j<=50;j++)
{
printf("%d",j)
}
| Is This Answer Correct ? | 1 Yes | 0 No |
What is the meaning of c in c language?
What is the role of && operator in a program code?
What are the c keywords?
Derive the complexity expression for AVL tree?
how to find the size of the data type like int,float without using the sizeof operator?
Why is c faster?
What is the difference between int main and void main?
different between overloading and overriding
What is the difference function call by value & function call by reference?
1,1,5,17,61,217,?,?.
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
What is the total generic pointer type?