Skip to main content

Posts

Swapping of Two Numbers in C or C Program to Swap Two Numbers

Swapping of Two Numbers in C or C Program to Swap Two Numbers or C program to Swap two numbers without using a third variable #include <stdio.h> #include <conio.h>  void main() {    int x, y, temp;    clrscr();    // to clear screen       printf("Enter the value of x and y\n");    scanf("%d%d", &x, &y);    printf("Before Swapping\nx = %d\ny = %d\n",x,y);    temp = x;    x    = y;    y    = temp;    /*       without using temp variable, this can be used    let x=4 and y=5    x = x + y ;   x=x+y => x=4+5 => x=9     y = x - y ;   y=x-y => y=9-5 => y=4  value changed    x = x - y ;   x=x-y => x=9-4 => x=5  value changed      */       printf("After Swapping\nx ...
Recent posts

Find the Greatest Time in C or CPP from two different times.

Find the Greatest Time in C or CPP from two different times. Example Code: #include<iostream.h> #include<conio.h> class time { private: int hh,mm,ss; public: void get() { cout<<"\n enter hh,mm,ss:"; cin>>hh>>mm>>ss; } void show() { cout<<"\n hour:"<<hh<<"\n minute:"<<mm<<"\n second:"<<ss; } time greatest(time x) { if (hh>x.ss) return *this; else if(hh>x.hh) return x; else if(mm>x.mm) return *this; else if(mm<x.mm) return x; else if(ss>x.ss) return *this; else return x; } }; void main() { clrscr(); time t1,t2,t3; cout<<"\n enter time1:"; t1.get(); cout<<"\n enter time2:"; t2.get(); t3=t1.greatest(t2); cout<<"\n greatest time:"; t3.show(); getch(); }

Binary to Decimal Conversion in C, C Program for Binary to Decimal

Binary to Decimal Conversion in C or C Program for Binary to Decimal Number? #include<stdio.h> #include<conio.h> void main() {         long int b_n,d_n=0,j=1,rem;     clrscr();     printf("Enter a binary number: ");     scanf("%ld",&b_n);     while(b_n!=0)    {         rem=b_n%10;                    d_n=d_n+rem*j;         j=j*2;         b_n=b_n/10;     }     printf("Equivalent decimal Number : %ld",d_n);     getch(); } Output: Enter a Binary Number : 101 Equivalent Decimal Number : 5

Strong Number in C upto a Limit

Write a C Program to check whether the given number is Strong Number or not? A number is called Strong Number if sum of the factorial of its digit is equal to number itself. ie 145 1! + 4! + 5! => 1 + 24 + 120 => 145 #include<stdio.h> #include<conio.h> void main() {   int num,i,f,r,sum,temp;   int min,max;   printf("Enter minimum range: ");   scanf("%d",&min);   printf("Enter maximum range: ");   scanf("%d",&max);   printf("Strong numbers in given range are: ");   for(num=min; num <= max; num++){       temp = num;       sum=0;       while(temp)      {            i=1;            f=1;            r=temp%10;        ...

Armstrong Number in C, C Program for Amstrong Number upto a limit

Definition of an Armstrong number Armstrong number is a number in which sum of its digits to power of number of its digits is equal to that number are known as Armstrong numbers. Example: let the Number is 153 Total digits in 153 is 3 And 1^3 + 5^3 + 3^3 = 1 + 125 + 27 = 153 Armstrong Number in C, C Program for Amstrong Number upto a limit: #include <stdio.h> #include <conio.h> void main() {     int num,rem,sum,temp;                       clrscr();     for (num=1;num<=500;num++)     {          temp=num;          sum = 0;          while (temp!=0)          {              ...

How to Run Command Line Arguments in C Program Example with Explanations

#include<stdio.h> #include<conio.h> #include<stdlib.h> int main(int argc,char *argv[]) { int sum=0,i; //Compare if proper number of arguments have been entered if(argc<3) { printf("Insufficient number of arguments:\n"); getch(); return 0; } //Add all the numbers entered using atoi function, ie default String, to be converted as integer for(i=1;i<argc;i++) { sum+=atoi(argv[i]); } //printing the sum printf("Sum of entered Numbers=%d",sum); getch(); } /* Just Compile and Run, then you will get "Insufficient number of arguments" message and press enter key.  then you will go to File menu and click Dos shell option, then you will get a prompt like C:\TC\BIN. there you type C:\TC\BIN\filename "12" "13" press enter key. Answer will be Sum of entered numbers=25  ie "12" and "13" are arguments which are given as Command Line Arguments  */

C Model Question Papers for BCA 1st year Kannur Bharathiar MG Madras Bangalore University

C Model Question Papers for BCA 1st year Kannur Bharathiar MG Madras Bangalore University : Fist Year BCA Model Question Paper for C Programming Language :- Model Question Paper B.C.A. : I Year: Programming using C: Time: 3 Hrs. Max. Marks: 100 SECTION – A 1) Answer the following Questions : 10 x 2 = 20 M a) Define Algorithm. b) Define Identifier. c) What is the Purpose of sizeof() operator. d) Compare while and do-while loops. Justify your answer. e) Define Recursion. f) How can we initialize an array. g) What is the difference between structure and union ? h) Define Pointer variable. i) Define Macro. j) What is the purpose of rewind() function. Section – B Answer the following questions. 4 x 20 = 80 M 2. a) Explain the structure of C program. b) Explain features of C language. (or) c) Describe in brief the operators in C language. d) Write a C program to evaluate the following expression. (a+(b*c)/d) 3. a) Explain control structures with examples. (or) b) Explain different parameter ...