Learn C ProgrammingLearn ProgrammingPrograms On More On FunctionsResources 063. Write a program to accept two numbers from user and swap their values using call by reference method in C language #include<stdio.h> #include<conio.h> #include<process.h> swap(int *x ,int *y) { int temp; temp=*x; *x=*y; *y=temp; } main()…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On FunctionsResources 062. Write a program to calculate square and cube of a given number in C language #include<stdio.h> #include<conio.h> int square(int x) { return(x*x); } int qube(int x) { return(x*x*x); } main()…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On FunctionsResources 061. Write a program to accept a number from user and print it’s factorial, check if it prime or not , and print it’s fibbonacci series using different functions in C language #include<stdio.h> #include<conio.h> fact(int x) { int i,fact=1; for(i=1;i<=x;i++) fact=fact*i; printf("Factorial is : %d",fact); } IsPrime(int x) { int i; for(i=2;i<x-1;i++)…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On FunctionsResources 060. Write a program to accept two numbers from user and print it’s addition,subtraction,multiplication,division using different functions in C language #include<stdio.h> #include<conio.h> int add(int x,int y) { return(x+y); } int sub(int x,int y) { return(x-y);…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Case Control StructureResources 059. Write a Program to accept two numbers and a operator (+, -, *, / from user and complete that particular operation only in C language #include<stdio.h> #include<conio.h> main() { int n,rem,a,b; char op; clrscr(); printf("Enter Operator(+,-,*,/)..."); scanf("%c",&op); printf("Enter numbers..."); scanf("%d%d",&a,&b);…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Case Control StructureResources 058. Write a program to accept a number from user and print that number in words but in reverse order in C language E.g. 153 -> THREE FIVE ONE #include<stdio.h> #include<conio.h> main() { int n,rem; clrscr(); printf("Enter number...");…Prashant ChaudhariSeptember 18, 2012
Advance Programs On For LoopLearn C ProgrammingLearn ProgrammingLoop Control StructuresPrograms On Case Control StructureResources 057. Write a program to accept a single value interger from user and print that integer in words in C language #include<stdio.h> #include<conio.h> main() { int n; clrscr(); printf("Enter number..."); scanf("%1d",&n); //%1d to scan single integer…Prashant ChaudhariSeptember 18, 2012
Advance Programs On For LoopLearn C ProgrammingLearn ProgrammingLoop Control StructuresResources 056. Write a program to print following output #include<stdio.h> #include<conio.h> main() { int i, j; clrscr(); printf("╔"); for(i=2;iPrashant ChaudhariSeptember 18, 2012
Advance Programs On For LoopLearn C ProgrammingLearn ProgrammingLoop Control StructuresResources 055. Write a program to print following output ******************************* * * * * * * ******************************* #include<stdio.h> #include<conio.h> main() { int i,j; clrscr();…Prashant ChaudhariSeptember 18, 2012
Advance Programs On For LoopLearn C ProgrammingLearn ProgrammingLoop Control StructuresResources 054. Write a program to print out ASCII chart on a single screen (all 256 characters from 0 to 255) in a tabular form. The ASCII code should be followed by the corresponding character in C language #include<stdio.h> #include<conio.h> main() { int i; clrscr(); for(i=0;iPrashant ChaudhariSeptember 18, 2012