Coder Destination Automation Anywhere RPA Tutorial
    • RPA
    • Java
    • IT News
    • C++
    • C Solutions
    • Contact Us
    • Privacy Policy
    • About Us
    How to swap two numbers by using function

    How to swap two numbers by using function

    September 29, 2017

    How to swap two numbers by using function  int main (void) { int a = 10; int b = 20; printf("current value of a: %d\n", a)...

    Read more »
    C Program for replacing space with %20

    C Program for replacing space with %20

    September 29, 2017

    Program for replacing space with %20 #include < stdio.h > #include < string.h > int main() { char str[100]; printf(...

    Read more »
    C Program for console file opens

    C Program for console file opens

    September 29, 2017

    C Program for console file opens #include  < stdio.h > #include < stdlib.h > int main() { FILE *fptr; char filename[100],...

    Read more »
    What is the life of an IT employee after being fired from a company?

    What is the life of an IT employee after being fired from a company?

    September 28, 2017

    What is the life of an IT employee after being fired from a company? They get real. and realize that they weren't hired because ...

    Read more »
    Divide and Conquer principle in C Programming

    Divide and Conquer principle in C Programming

    September 27, 2017

    Divide and Conquer principle in C Programming It was a strategy used by British to rule India. Lol........... Joke apart, Now coming to t...

    Read more »
    Top 5 IT Company in India for fresher graduate

    Top 5 IT Company in India for fresher graduate

    September 27, 2017

    Read also  The real reason why IT companies delay the joining date of fresh graduates 1.       TATA Consultancy Services Limited Fou...

    Read more »
    Tips: Prepare for Infosys, Wipro, Cognizant, and Tech Mahindra interviews

    Tips: Prepare for Infosys, Wipro, Cognizant, and Tech Mahindra interviews

    September 27, 2017

    First of all, you need to understand that the difficulty level of aptitude test and interviews or you can say the placement process is ...

    Read more »
    Swap two numbers by using function in C Programming

    Swap two numbers by using function in C Programming

    September 26, 2017

    Swap two numbers by using function in C Programming int main (void) { int a = 10; int b = 20; printf("current value of a: %d...

    Read more »
    How to shutdown pc by c code ?(win 7/8/10/xp)

    How to shutdown pc by c code ?(win 7/8/10/xp)

    September 25, 2017

    How to shutdown pc by c code ?(win 7/8/10/xp) Shortcuts:  #include < stdio.h > #include < stdlib.h > int main() { syste...

    Read more »
    Print even number 1 to 100  Using for loop

    Print even number 1 to 100 Using for loop

    September 25, 2017

    Print even number 1 to 100  Using for loop LOGIC: for( i=1;i < =100;i++) { if(i%2==0 ) { Printf("even no are %d",i); ...

    Read more »
    How to use switch case in C Programming

    How to use switch case in C Programming

    September 25, 2017

    How to use switch case Let's make it simpler. You use switch to say what variable you want to switch on and case to define what ...

    Read more »
    The real reason why IT companies delay the joining date of fresh graduates

    The real reason why IT companies delay the joining date of fresh graduates

    September 25, 2017

    The reasons for delay are The slow market As you know that previous year was very bad for service based companies and worse for Info...

    Read more »
    Tricks and common doubts in C and C++

    Tricks and common doubts in C and C++

    September 24, 2017

    1.How to change font style and font size in c program? Answer:  To turn bold on and off you need to call the library term.h if you are o...

    Read more »
    C Program to Check Armstrong Number

    C Program to Check Armstrong Number

    September 24, 2017

    A positive integer is called an Armstrong number of order n if abcd... = an + bn + cn + dn + ... In case of an Armstrong number of 3 dig...

    Read more »
    C Program to Check Prime or Armstrong Number Using User-defined Function

    C Program to Check Prime or Armstrong Number Using User-defined Function

    September 24, 2017

    In this program, two user-defined functions checkPrimeNumber() and checkArmstrongNumber() are created. The checkPrimeNumber() returns 1 ...

    Read more »
    C Program to Print an Integer (Entered Manually)

    C Program to Print an Integer (Entered Manually)

    September 24, 2017

    #include  < stdio.h > int main() {     int number;     // printf() dislpays the formatted output     printf("Enter an int...

    Read more »
    No. of Distinct Elements in a sorted array

    No. of Distinct Elements in a sorted array

    September 08, 2017

    No. of Distinct Elements in a sorted array  Write a program to find the number of distinct elements in a sorted array. Input Format: Inp...

    Read more »
    GetMaxSum Number of Triangle

    GetMaxSum Number of Triangle

    September 07, 2017

    GetMaxSum Consider a triangle of numbers in which a number appears in the first line, two numbers appear in the second line, three...

    Read more »
    Seat Allocation I

    Seat Allocation I

    September 06, 2017

    Seat Allocation I The seats are arranged in the lab in a rectangular fashion with m rows and n columns. The students are seated in the...

    Read more »
    Calculate Net Salary

    Calculate Net Salary

    September 05, 2017

    Write a program that calculates and gives the monthly salary details for an employee,   including all the amounts deducted from an emp...

    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)
        • How to swap two numbers by using function
        • C Program for replacing space with %20
        • C Program for console file opens
        • What is the life of an IT employee after being fir...
        • Divide and Conquer principle in C Programming
        • Top 5 IT Company in India for fresher graduate
        • Tips: Prepare for Infosys, Wipro, Cognizant, and T...
        • Swap two numbers by using function in C Programming
        • How to shutdown pc by c code ?(win 7/8/10/xp)
        • Print even number 1 to 100 Using for loop
        • How to use switch case in C Programming
        • The real reason why IT companies delay the joining...
        • Tricks and common doubts in C and C++
        • C Program to Check Armstrong Number
        • C Program to Check Prime or Armstrong Number Using...
        • C Program to Print an Integer (Entered Manually)
        • No. of Distinct Elements in a sorted array
        • GetMaxSum Number of Triangle
        • Seat Allocation I
        • Calculate Net Salary
      • ►  August (62)
      • ►  July (44)
      • ►  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