Concept of Pointer In C
A pointer is a variable that stores the address of another variable is called a pointer. Syntax - Data Type *pointer name; Two types of the operator are used in…
A pointer is a variable that stores the address of another variable is called a pointer. Syntax - Data Type *pointer name; Two types of the operator are used in…
The break statement is used to terminate the loop. In this program, if the value is equal to 6 then the loop will be terminated and the statement will be…
#include<stdio.h> #include<conio.h> void main() { int i,j,k; clrscr(); for(i=1;i<=5;i++) { for(k=1;k<=5-i;k++) { printf(" "); } for(j=1;j<=i;j++) { printf(" *"); } printf("\n"); } for(i=4;i>=1;i--) { for(k=1;k<=5-i;k++) { printf(" "); } for(j=1;j<=i;j++) …
A simple program to swap two numbers without using the third variable. You have to use some formulas or basic concepts. #include<stdio.h> #include<conio.h> void main() { int a,b; clrscr(); printf("enter…
The program will accept two numbers form the user "a" and "b" for swapping. For this purpose, we have to use a third variable "tmp". #include<stdio.h> #include<conio.h> void main() {…
#include<stdio.h> #include<conio.h> void main() { int long a,n,rev=0; clrscr(); printf("enter any number"); scanf("%lld",&n); while(n>0) { a=n%10; rev=rev*10+a; n=n/10; } printf("%lld",rev); getch(); } Output:
#include<stdio.h> #include<conio.h> void main() { long int a,n,sum=0; clrscr(); printf("enter any number"); scanf("%lld",&n); while(n>0) { a=n%10; // storing the remainder sum=sum+a; n=n/10; } printf("%lld",sum); getch(); } Output:
C program to print the table of any number entered by the user. #include<stdio.h> #include<conio.h> void main() { int a,b,c; clrscr(); printf("enter the value of a"); scanf("%d",&a); for (b=1;b<=10;b=b+1) {…
C program to print the absolute value of the given number. Absolute value is the actual value or magnitude without any sign. Suppose user entered a value -12 then the…
C PROGRAM TO ENTER A NUMBER BY USER AND TO CHECK WHETHER IT IS A PRIME NUMBER OR NOT. A prime number is a number that is divisible by itself…