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 |
c program to compute AREA under integral
What is character set?
What is structure in c explain with example?
write a c program for swapping two strings using pointer
ABCDCBA ABC CBA AB BA A A
Explain the term printf() and scanf() used in c language?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
What is the use of linkage in c language?
code for inverse a matrix
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
1. Write a program to reverse every second word in a given sentence.