To generate the series 1+3+5+7+... using C program
Answers were Sorted based on User's Feedback
Answer / shiva
for(int a=0;a<10;a++){
(a&1)?printf("%d\n",a):printf("\n");
}
| Is This Answer Correct ? | 8 Yes | 6 No |
Answer / nasif
#include<stdio.h>
int main()
{
int n,i,d=1,sum=0;
scanf("%d", &n);
for(i=1;i<=n;d=d+2){
sum=sum+d;
i++;
}
printf("summation is %d", sum);
return 0;
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / meheka
#inclined <stdio.h>
int main ()
{
int I=1,n,sum=0;
scanf("%d",&n);
while(i<=n)
sum=sum+I;
{
printf("%d",sum);
I=I+2;
}
return 0:
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / beetha poulose
#include<include>
int main ()
{
int j,i,n,sum=0;
Print("enter n");
scanf ("%d",&n);
For (i=1,j=1; j<=n; i=i+5,j++)
{
Sum=sum +i;
}
Prinrf ("sym=%d",sum);
Return 0;
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nishant
#include<stdio.h>
#include<conio.h>
void main()
{
int n,i=1,sum=0;
clrscr();
printf("enter the value for n:");
scanf("%d",&n);
while(i<=n)
{
sum=sum+i;
i=i+2;
}
printf("the series is =%d");
getch()
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / aditya parashar
#include<iostream.h>
void main ()
{int s,n;
cout <<"For finding sum of series
1+3+5.. till n terms enter value of n: ";
cin>>n;
s=n*n;
cout<<"
sum of series 1+3+5+.. till n
terms is: "<<s;
}
[Note:- only output matters]
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / medo
//*I know this is a different program but i want you to try
it!*//
#include <stdio.h>
void main()
{
int i,j;
for(i=1;i<=4;i++)
{
for(j=1;j<=8;j++)
{printf("* ");}
printf("\n");
for(j=1;j<=8;j++)
{printf(" *"); }
printf("\n");
}
}
| Is This Answer Correct ? | 7 Yes | 8 No |
Answer / parthibanselvaraj
the series seems to be infinite . so you need to restrict
it to some ceiling.
| Is This Answer Correct ? | 10 Yes | 19 No |
how to convert decimal to binary in c using while loop without using array
50 Answers Apple, Aptech, Arwen Tech, BCS, C2D Software, CEC,
what is syntax error?
#include<>stdio.h> #include<>conio.h> { printf("hello"); void main() getch(); } what the out put of this program and why ......plz clear my answer
errors are known as?
3 Answers EX, State Bank Of India SBI,
Find the error (2.5*2=5) (a) X=y=z=0.5,2.0-5.75 (b) s=15;
I'm having trouble with coming up with the correct code. Do I need to put a loop? Please let me know if I'm on the right track and what areas I need to correct. I still don't have a good grasp on this programming stuff. Thanks =) The assignment was to write a program using string functions that accepts a coded value of an item and displays its equivalent tag price. The base of the keys: 0 1 2 3 4 5 6 7 8 9 X C O M P U T E R S Sample I/O Dialogue: Enter coded value: TR.XX Tag Price : 68.00
when i use cout or cin call & then either << or >> .....it shows declaration syntax error...what should i do? cout<<"anything"; int a; cin>>a; return 0;
what are the techniques for reducing the fragility of a memory bug?
Write a C program to enter 10 integer numbers through one variable and count how many of them are even using while loop ?
Declaration of Cube Guys please help me.. Is this a right way to declare cube.? If i Compile it. It Says: Cube undeclared what should i do? Please help \thanks in advanced #include<stdio.h> #include<math.h> #include<conio.h> main( ) { float x,y; while(x++<10.0) { printf("Enter Number:"); scanf("%d", &x); y = cube(x); printf("%f %f %f \n", x,pow(x,2),y); cube(x); } { float x; float y; y = x*x*x; } getch(); return (y); }
How to develop a program using C language to convert 8-bit binary values to decimals. TQ
what is the error in the following code: main() { int i=400,j; j=(i*i)/i; }