Coder Destination Automation Anywhere RPA Tutorial
    • RPA
    • Java
    • IT News
    • C++
    • C Solutions
    • Contact Us
    • Privacy Policy
    • About Us
    44. Series 2

    44. Series 2

    July 31, 2017

    Write a program to generate the first n terms in the series --- 20,19,17,..,10,5 Input Format: Input consists of a single integer which ...

    Read more »
    43. Series I

    43. Series I

    July 31, 2017

    1)Write a program to generate the first n terms in the series --- 1,4,9,16,25, .... Input Format: Input consists of a single integer wh...

    Read more »
    Valid numbers in C Programming

    Valid numbers in C Programming

    July 31, 2017

    Code: To find valid numbers   #include<stdio.h> int main(){   int n,count=0;;   while(1){   printf("Enter the number\n...

    Read more »
    Multiplication Table in C Programming

    Multiplication Table in C Programming

    July 31, 2017

    Code: Multiplication Table   #include<stdio.h> int main(){   int n, m,i;   printf("Enter n\n");   scanf("%d...

    Read more »
    Count positive and negative in C Programming

    Count positive and negative in C Programming

    July 31, 2017

    Count positive and negative Code:   #include<stdio.h> int main() {   int n,i,j[20],count=0,count1=0;   printf("Enter the ...

    Read more »
    Sum of 'n' positive numbers in C Programming

    Sum of 'n' positive numbers in C Programming

    July 31, 2017

    Sum of 'n' positive numbers Code:   #include<stdio.h> int main() {   int n,i;   int a, count=0,sum=0;   printf("...

    Read more »
    Sum of 'n' numbers in C Programming

    Sum of 'n' numbers in C Programming

    July 31, 2017

    Sum of 'n' numbers Sum of 'n' numbers in C Programming Code:   #include<stdio.h> int main(){   int a[10],n,sum...

    Read more »
    37. Print 3

    37. Print 3

    July 31, 2017

    C program to print all numbers between a and b (a and b inclusive) using for loops. Input Format: Input consists of 2 integers. The firs...

    Read more »
    36. Print 2

    36. Print 2

    July 31, 2017

    C program to print all numbers between a and b (a and b inclusive) using a for loop. Input Format: Input consists of 2 integers. The fir...

    Read more »
    35. Print 1

    35. Print 1

    July 31, 2017

    Write a C program to print all numbers between a and b (a and b inclusive) using a for loop. Input Format: Input consists of 2 integers....

    Read more »
    34. HOTEL TARIFF CALCULATOR

    34. HOTEL TARIFF CALCULATOR

    July 30, 2017

    Code:   #include<stdio.h> void p(float); int main() {   int month,n;   float rent,t=0,r=0;   scanf("%d\n",&mont...

    Read more »
    33. FEES CALCULATOR

    33. FEES CALCULATOR

    July 30, 2017

    Code:   #include<stdio.h> int main() {   char s[1];   int sum=0;   int rpaper,rfee,arrear,afees;   scanf("%s",s); ...

    Read more »
    BASIC CALCULATOR Program in C

    BASIC CALCULATOR Program in C

    July 30, 2017

    BASIC CALCULATOR Program in C Code:   #include<stdio.h> int main() {   int a,b;   char o[1];   scanf("%d",&a);...

    Read more »
    31. MONTHS

    31. MONTHS

    July 30, 2017

    Code:   #include<stdio.h> int main(){   int n;   scanf("%d\n",&n);   switch (n)   {     case 1:           prin...

    Read more »
    30. Y2K Problem Detector

    30. Y2K Problem Detector

    July 30, 2017

    Code:   #include<stdio.h> int main(){   signed int current, birth, a;   printf("Enter Year of Birth\n");   scanf(...

    Read more »
    29. BETTER or NOT

    29. BETTER or NOT

    July 30, 2017

    Code:   #include<stdio.h> int main(){   int s1,s2;   printf("Enter the number of students in college 1\n");   scanf(...

    Read more »
    28. Blood bank

    28. Blood bank

    July 30, 2017

    Code:   #include<stdio.h> int main(){   int age,w;   printf("Enter your Age:\n");   scanf("%d",&age); ...

    Read more »
    27. A Task

    27. A Task

    July 30, 2017

    Code:   #include<stdio.h> int main() {   int time,t[3];   printf("Enter the Time Limit:\n");   scanf("%d",...

    Read more »
    26. DOLL SHOW

    26. DOLL SHOW

    July 27, 2017

    Code:    #include<stdio.h> int main(){   int n;   printf("Press a number:\n");   scanf("%d",&n);   if...

    Read more »
    25. Mickey mouse

    25. Mickey mouse

    July 27, 2017

    Code:    #include<stdio.h> int main(){   int n;   printf("Enter the Balloon's number:\n");   scanf("%d...

    Read more »
    NEW or OLD in C Programming

    NEW or OLD in C Programming

    July 27, 2017

    NEW or OLD in C Programming Code:   #include<stdio.h> int main(){   int y1,y2;   printf("Enter the year of establishment ...

    Read more »
    IN / OUT in C Programming

    IN / OUT in C Programming

    July 27, 2017

    IN / OUT in C Programming Code:   #include<stdio.h> int main() {   int mincount, maxcount, c;   printf("Enter the number...

    Read more »
    CHARACTER – UPPER OR LOWER in C Programming

    CHARACTER – UPPER OR LOWER in C Programming

    July 27, 2017

    CHARACTER – UPPER OR LOWER in C Programming Code:   #include<stdio.h> int main() {   char a;   scanf("%c",&a); ...

    Read more »
    CALCULATE GRADE in C Programming

    CALCULATE GRADE in C Programming

    July 27, 2017

    CALCULATE GRADE in C Programming Code:   #include<stdio.h> int main() {   int a,b,c,avg=0;   scanf("%d", &a); ...

    Read more »
    LEAP YEAR Program in C

    LEAP YEAR Program in C

    July 21, 2017

    LEAP YEAR Program in C Code:   #include<stdio.h> int main(){   int y;   scanf("%d",&y);   if((y%400==0))     pr...

    Read more »
    MAXIMUM OF 3 in C Programming

    MAXIMUM OF 3 in C Programming

    July 21, 2017

    MAXIMUM OF 3 in C Programming Code:   #include<stdio.h> int main(){   int a,b,c;   scanf("%d",&a);   scanf(...

    Read more »
    MAXIMUM OF 2 in C Programming

    MAXIMUM OF 2 in C Programming

    July 21, 2017

    MAXIMUM OF 2 in C Programming Code:   #include<stdio.h> int main(){   int a,b;   scanf("%d",&a);   scanf("...

    Read more »
    DIVISIBLE BY 2 OR 3 in C

    DIVISIBLE BY 2 OR 3 in C

    July 21, 2017

    DIVISIBLE BY 2 OR 3 in C Code:    #include<stdio.h> int main(){   int a;   scanf("%d",&a);   if((a%2==0)||(a%3...

    Read more »
    DIVISIBLE BY 7 AND 3 in C programming

    DIVISIBLE BY 7 AND 3 in C programming

    July 21, 2017

    DIVISIBLE BY 7 AND 3 in C programming Code:   #include<stdio.h> int main(){   int a;   scanf("%d",&a);   if((a%...

    Read more »
    ODD OR EVEN  C Program

    ODD OR EVEN C Program

    July 21, 2017

    ODD OR EVEN  C Program Code:   #include<stdio.h> int main(){   int a;   scanf("%d",&a);   if(a%2==0)     prin...

    Read more »
    14. AVERAGE SALE

    14. AVERAGE SALE

    July 21, 2017

    Code:   #include<stdio.h> int main(){   float s[5],a;   printf("Enter sale in first month\n");   scanf("%f...

    Read more »
    13. PROFIT CALCULATOR

    13. PROFIT CALCULATOR

    July 21, 2017

    Code:   #include<stdio.h> int main(){   int n,c,s,o=0;   printf("Enter the number of copies sold\n");   scanf("%...

    Read more »
    12. FOUR SEASONERS

    12. FOUR SEASONERS

    July 21, 2017

    Code:   #include<stdio.h> int main() {   int x1,x2,x3,y1,y2,y3;   printf("Enter x1\n");   scanf("%d",&...

    Read more »
    11. THREE IDIOTS

    11. THREE IDIOTS

    July 21, 2017

    Code:   #include<stdio.h> int main(){   char s='(';   char ss=')';   int x1,x2,y1,y2;   float mid1,mid2;   pr...

    Read more »
    10. INTERCEPTS

    10. INTERCEPTS

    July 21, 2017

    Code:   #include<stdio.h> int main(){   int m,x,y,c;   printf("Enter the value of m\n");   scanf("%d",&...

    Read more »
    9.TRIANGLE SIDES

    9.TRIANGLE SIDES

    July 21, 2017

    Code:   #include<stdio.h> #include<math.h> int main(){   int x1,x2,x3,y1,y2,y3;   float ab,bc,ac;   printf("Enter t...

    Read more »
    8. PLACING THE FLAG POST

    8. PLACING THE FLAG POST

    July 21, 2017

    Code:   #include<stdio.h> int main(){   int x,y,l;   char s='(';   char ss=')';   printf("Enter the x-co...

    Read more »
    7. ENFCING THE GROUND

    7. ENFCING THE GROUND

    July 21, 2017

    Code:   #include<stdio.h> int main(){   int l,w;   printf("Enter the length of the ground\n");   scanf("%d"...

    Read more »
    6. Alice in wonderland

    6. Alice in wonderland

    July 21, 2017

    Code:   #include<stdio.h> int main(){   int b,a,c;   printf("The bird said:\n");   scanf("%d",&b);   a...

    Read more »
    5. Splitting into Teams

    5. Splitting into Teams

    July 21, 2017

    Code: #include<stdio.h> int main(){ int n,t,cal=0, call; printf("Enter the number of students in the class\n"); s...

    Read more »
    4. NEWSPAPER REPORT

    4. NEWSPAPER REPORT

    July 21, 2017

    Code: #include<stdio.h> int main(){ int a,b,c; char d=')'; printf("Enter the number of people dead:\n"); ...

    Read more »
    3. ROBOT

    3. ROBOT

    July 21, 2017

    Code:   #include<stdio.h> #include<string.h> int main(){   char name[100], creator[150], purpose[150];   int mspace;   f...

    Read more »
    2. WELCOME ALIENS

    2. WELCOME ALIENS

    July 21, 2017

    Code:   #include<stdio.h> int main(){   printf("Hello Aliens ! Welcome to our planet Earth.");   return 0; }

    Read more »
    Hello World! in C Programming

    Hello World! in C Programming

    July 21, 2017

    Hello World! in C Programming Code:   #include<stdio.h> int main(){   printf("Hello World!");   return 0; }

    Read more »
    Newer Posts Older Posts Home
    Subscribe to: Posts ( Atom )

    Amazon Ads

    Popular Posts

    • Automation Anywhere RPA MCQ Quiz: Part 2
    • Automation Anywhere Multiple Choice Questions with Answer for Advance Certification
    • Latest Automation Anywhere RPA certification Quiz and Important MCQs with answers Pdf
    • RPA Mcqs Quiz: 5
    • RPA Mcqs Quiz: 3

    Archive

    • ►  2020 (3)
      • ►  May (3)
    • ►  2019 (15)
      • ►  October (1)
      • ►  September (2)
      • ►  August (4)
      • ►  June (2)
      • ►  May (1)
      • ►  April (3)
      • ►  February (1)
      • ►  January (1)
    • ►  2018 (25)
      • ►  October (1)
      • ►  August (16)
      • ►  July (1)
      • ►  June (2)
      • ►  May (1)
      • ►  April (1)
      • ►  February (2)
      • ►  January (1)
    • ▼  2017 (133)
      • ►  October (6)
      • ►  September (20)
      • ►  August (62)
      • ▼  July (44)
        • 44. Series 2
        • 43. Series I
        • Valid numbers in C Programming
        • Multiplication Table in C Programming
        • Count positive and negative in C Programming
        • Sum of 'n' positive numbers in C Programming
        • Sum of 'n' numbers in C Programming
        • 37. Print 3
        • 36. Print 2
        • 35. Print 1
        • 34. HOTEL TARIFF CALCULATOR
        • 33. FEES CALCULATOR
        • BASIC CALCULATOR Program in C
        • 31. MONTHS
        • 30. Y2K Problem Detector
        • 29. BETTER or NOT
        • 28. Blood bank
        • 27. A Task
        • 26. DOLL SHOW
        • 25. Mickey mouse
        • NEW or OLD in C Programming
        • IN / OUT in C Programming
        • CHARACTER – UPPER OR LOWER in C Programming
        • CALCULATE GRADE in C Programming
        • LEAP YEAR Program in C
        • MAXIMUM OF 3 in C Programming
        • MAXIMUM OF 2 in C Programming
        • DIVISIBLE BY 2 OR 3 in C
        • DIVISIBLE BY 7 AND 3 in C programming
        • ODD OR EVEN C Program
        • 14. AVERAGE SALE
        • 13. PROFIT CALCULATOR
        • 12. FOUR SEASONERS
        • 11. THREE IDIOTS
        • 10. INTERCEPTS
        • 9.TRIANGLE SIDES
        • 8. PLACING THE FLAG POST
        • 7. ENFCING THE GROUND
        • 6. Alice in wonderland
        • 5. Splitting into Teams
        • 4. NEWSPAPER REPORT
        • 3. ROBOT
        • 2. WELCOME ALIENS
        • Hello World! in C Programming
      • ►  May (1)

    Facebook

    Categories

    C Robotic Process Automation RPA Automation Anywhere Automation Anywhere Quiz RPA Quiz C Practice RPA Certification IT News Automation Anywhere Certification OOP Java Jokes cloud

    Contact Form

    Name

    Email *

    Message *

    Report Abuse

    About Us

    We provide solutions for all type of Robotic Process Automation, programming problems, code debugging and SQL. You can submit your questions using contact form , We also provide placement guide for IT aspirants. Please feel free to contact, we respect privacy of our visitors.
    If you want to contribute to us please drop us a mail using contact form.
    I would like to welcome all members to a new platform where you can sharpen your programming skills. I urge people to ask questions, give answers and solve problems/errors to learn more and more.
    We all are here to boost our knowledge.
    Welcome again to a programmer family.

    Total Pageviews

    Created By SoraTemplates & MyBloggerThemes