-->

Facebook

Jasper Roberts - Blog

Tuesday, March 10, 2015

Assignment - 2 CPU(2110003)

1. Write a short note on data types. 
2. What is constant? Explain numerical constant and non-numerical constant. 
3. Explain C operators in details. 
4. What is type conversion? Explain it. 
5. Explain features of c language.

Click Here to Download
RELATED TOPICS
Assignment-1
Assignment-3
Assignment-4
Assignment-5
Assignment-6
Assignment-7
Assignment-8
Assignment-9








Assignment-1 CPU(2110003)

1. Draw the block diagram of computer system. Explain types of software.

2. Explain middle level language, high level language and low level language.

3. What is flow chart? Give the symbols used to draw flow chart.

4. What is flow chart? Draw a flow chart to find out the largest number among three numbers.

5. What is an algorithm? Write an algorithm to find out smallest number among three numbers.

Click Here to Download
RELATED TOPICS
Assignment-2
Assignment-2
Assignment-3
Assignment-4
Assignment-5
Assignment-6
Assignment-7
Assignment-8
Assignment-9

Friday, March 6, 2015

Happy Holi....

Hello Everyone
Wish You Happy Holi....
HAPPY HOLI C FOR ALL 2015
HAPPY HOLI

Monday, March 2, 2015

A C Program to represent Secant Method.

#include<stdio.h>
#include<conio.h>
double f(double x)
{
return (2*x*x*x-3*x*x+5*x-6);
};
void main()
{
int iter,ctr=1;
double x0,x1,r;
clrscr();
printf("\nEnter the first approximate value : ");
scanf("%lf",&x0);
printf("\nEnter the second approximate value : ");
scanf("%lf",&x1);
printf("\nEnter the number of itteration : ");
scanf("%d",&iter);
while(ctr<=iter)
{
r=((x0*f(x1))-(x1*f(x0)))/(f(x1)-f(x0));
printf("\nAfter %d itteration root is = %lf",ctr,r);
x0=x1;
x1=r;
ctr++;
};
printf("\n\nThe approximate root is = %lf",r);
getch();
}


RELATED TOPICS
A C Program to represent N-R Method.
A C Program to represent the Bisection Method.