[ create a new paste ] login | about

Rituparnadatta

Name: Rituparna datta
Email:
Site/Blog:
Location: Dhaka bangladesh
Default language: C
Favorite languages: English , bengali .
About: I am a coder. I study at BUET. CSE Engineering is my subject. Loser.

Saved pastes by Rituparnadatta:

C, pasted on May 2:
1
2
3
4
5
//loop and reverse nunmber show //

#include<stdio.h>
int main (void)
{
...
view (19 lines, 20 lines of output)
C, pasted on May 2:
1
2
3
4
5
//loop and reverse nunmber show //

#include<stdio.h>
int main (void)
{
...
view (18 lines, 5 lines of output)
C, pasted on Feb 13:
1
2
3
4
5
//two steps//

#include<stdio.h>
 int main (void)
{
...
view (17 lines, 3 lines of output)
C, pasted on Sep 21:
1
2
3
4
5
//student marks by array //
#define ARRAYSIZE 5
#include<stdio.h>
int main (void)
{
...
view (17 lines, 10 lines of output)
C, pasted on Sep 21:
1
2
3
4
5
//Array and counter//
#include<stdio.h>
int main (void)
{
int counter,number[21];
...
view (23 lines, 21 lines of output)
C, pasted on Sep 20:
1
2
3
4
5
//function use loop and multiplication//
#include<stdio.h> 
void sq(int i);
int main (void)
{
...
view (15 lines, 7 lines of output, 1 comment)
C, pasted on Sep 20:
1
2
3
4
5
//loop and frequence //
#include<stdio.h>
int main (void)
{
int limit,number,line;
...
view (18 lines, 5 lines of output)
C, pasted on Sep 19:
1
2
3
4
5
//using loop and make a frequency//
#include<stdio.h>
int main(void)
{
int limit,line,number;
...
view (14 lines, 16 lines of output)
C, pasted on Sep 19:
1
2
3
4
5
//loop and display odd number //
#include<stdio.h>

int main (void)  
{
...
view (15 lines, 1 line of output)
C, pasted on Sep 19:
1
2
3
4
5
//loop and display odd number //
#include<stdio.h>
int main ()
{
int i;
...
view (19 lines, 17 lines of output)
C, pasted on Sep 19:
1
2
3
4
5
//loop and display the number//
#include<stdio.h>
int main ()
{
int i;
...
view (12 lines, 2 lines of output)
C, pasted on Sep 19:
1
2
3
4
5
//loop and display the number//
#include<stdio.h>
int main ()
{
int i;
...
view (12 lines, 17 lines of output)
C, pasted on Sep 19:
1
2
3
4
5
//program text/
#include<stdio.h>
int main ()
{
int id1=10101 , id2=10101;
...
view (21 lines, 1 line of output)
C, pasted on Sep 19:
1
2
3
4
5
//program test//

#include<stdio.h>
int main (void)
{
...
view (13 lines, 1 line of output)
C, pasted on Sep 17:
1
2
3
4
5
//vowel and consonant use OR and else //
#include<stdio.h>
int main (void)
{
char ch='A';
...
view (15 lines, 1 line of output)
C, pasted on Sep 17:
1
2
3
4
5
//THE upper && lower case and useing else//              
#include<stdio.h>
int main (void)
{
char ch= 'W';   
...
view (15 lines, 1 line of output)
C, pasted on Sep 17:
1
2
3
4
5
//THE upper && lower case//              
#include<stdio.h>
int main (void)
{
char ch= 'x';   
...
view (15 lines, 1 line of output)
C, pasted on Sep 16:
1
2
3
4
5
//ARA// 
#include<stdio.h>
int main(void)
{
int result, ara[5]={10,20,30,40,50};
...
view (18 lines, 8 lines of output, 1 comment)
C, pasted on Sep 15:
1
2
3
4
5
//prints a sequence of squares of numbers and use operator *=//
#define N 100
#define A 2
main()
{
...
view (13 lines, 5 lines of output, 2 comments)
C, pasted on Aug 19:
1
2
3
4
5
//series resistance //
#include<stdio.h>
int main()
{
float resistance1,resistance2,resistance3,resistance4, voltage, current,totalresistance;
...
view (28 lines, 3 lines of output)
C, pasted on Aug 17:
1
2
3
4
5
//Multiplication with for loop and nested loop by use stile//

#include<stdio.h>
int main()
{
...
view (18 lines, 106 lines of output)
C, pasted on Aug 17:
1
2
3
4
5
//Multiplication with for loop and nested loop by use stile//

#include<stdio.h>
int main()
{
...
view (18 lines, 211 lines of output)
C, pasted on Aug 17:
1
2
3
4
5
//Multiplication with for loop and nested loop//

#include<stdio.h>
int main()
{
...
view (15 lines, 200 lines of output)
C, pasted on Aug 17:
1
2
3
4
5
//Multiplication with for loop//

#include<stdio.h>
int main()
{
...
view (17 lines, 11 lines of output)
C, pasted on Aug 17:
1
2
3
4
5
//Multiplication with for loop//
#include<stdio.h>
int main()
{
int n=10;
...
view (12 lines, 10 lines of output)
C, pasted on Aug 17:
1
2
3
4
5
//Multiplication with while loop//
#include<stdio.h>
int main()
{
int n=5;
...
view (13 lines, 10 lines of output)
C, pasted on Aug 17:
1
2
3
4
5
//covert km to meter and mille and cm//

#include<stdio.h>
int main (void)
{
...
view (20 lines, 4 lines of output)
C, pasted on Aug 17:
1
2
3
4
5
//flowing blank after a number in output//

#include<stdio.h>
int main()
{
...
view (18 lines, 5 lines of output)
C, pasted on Aug 17:
1
2
3
4
5
#include<stdio.h>
int main()
{
int i, j;
for(i=1; i<5; i++)
...
view (16 lines, 5 lines of output, 1 comment)
C, pasted on Aug 17:
1
2
3
4
5
#include<stdio.h>
int main()
{
long long i, first=0, second=1, next;
for(i=0; i<10; i++)
...
view (14 lines, 10 lines of output)
C, pasted on Aug 17:
1
2
3
4
5
#include<stdio.h>
int main()
{
long long i, first=0, second=1, next;
printf("the first and second",first);
...
view (15 lines, 1 line of output)
C, pasted on Aug 16:
1
2
3
4
5
//void function name (void) //
#include<stdio.h>
void addition();
int main()
{
...
view (19 lines, 4 lines of output, 1 comment)
C, pasted on Aug 16:
1
2
3
4
5
//see it//
#include<stdio.h>
int main()
{
int p=25,q=35; 
...
view (14 lines, 1 line of output)
C, pasted on Aug 16:
1
2
3
4
5
#include<stdio.h>
int main()
{
int n;
n=5;
...
view (15 lines, 1 line of output)
C, pasted on Aug 16:
1
2
3
4
5
#include<stdio.h>
int main()
{
int n;
double x;
...
view (13 lines, 2 lines of output)
C, pasted on Aug 16:
1
2
3
4
5
#include<stdio.h>
int main()
{
printf("i am alive! Beware.");
getchar();
...
view (7 lines, 1 line of output)
C, pasted on Aug 15:
1
2
3
4
5
#include<stdio.h>
int main()
{
int n=1;
while(n<=100)
...
view (11 lines, 100 lines of output)
C, pasted on Aug 15:
1
2
3
4
5
//ENJOY SOMETHING//
#include<stdio.h>
int main()
{
int n=1;
...
view (11 lines, 3121 lines of output)
C, pasted on Aug 15:
1
2
3
4
5
#include<stdio.h>
int main()
{
char ch='W';
if(ch>='a' && ch<='z')
...
view (14 lines, 1 line of output)
C, pasted on Aug 15:
1
2
3
4
5
//even or odd//
#include<stdio.h>
int main ()
{
int number=5; 
...
view (15 lines, 1 line of output)
C, pasted on Aug 15:
1
2
3
4
5
#include<stdio.h>
int main ()
{
int number=5; 
if(number>10)
...
view (14 lines, 1 line of output)
C, pasted on Aug 15:
1
2
3
4
5
//ARRAY//
#include<stdio.h>
int main()
{
int arra[10]={10, 20, 30, 40, 50, 60, 70, 80, 90, 100};
...
view (12 lines, 10 lines of output)
C, pasted on Aug 15:
1
2
3
4
5
#include<stdio.h>
int main()
{
int are[5]={10, 20, 30, 40, 50};
printf("FIRST ELEMENT: %d\n",are[0]);
...
view (11 lines, 3 lines of output)
C, pasted on Aug 15:
1
2
3
4
5
#include<stdio.h>
int main ()
{
double a, b, sum;
a=9.5;
...
view (11 lines, 2 lines of output)