given integer number,write a program that displays the
number as follows:
First line :all digits
second line : all except the first digit
.
.
.
.
Last line : the last digit

Answers were Sorted based on User's Feedback



given integer number,write a program that displays the number as follows: First line :all digits ..

Answer / jickson

#include<stdio.h>
main()
{
int num,dcount,temp,i,j;
int array[20];
printf("\nEnter a number:");
scanf("%d",&num);
temp=num;
for(dcount=0;num!=0;num=num/10,dcount++);
for(i=dcount;i>0;i--)
{
array[i-1]=temp%10;
temp=temp/10;
}
printf("Required Pattern is:\n");
for(i=0;i<dcount;i++)
{
for(j=i;j<dcount;j++)
printf("%d\t",array[j]);
printf("\n");
}

}

Is This Answer Correct ?    40 Yes 13 No

given integer number,write a program that displays the number as follows: First line :all digits ..

Answer / shams

#include <stdio.h>
int main()
{
int i,j,index,n,a[10];
printf("enter a number");
scanf("%d",&n);
for(i=0;n!=0;i++)
{
a[i]=n%10;
n=n/10;
}
i=i-1;
printf("output\n");
for(;i>=0;i--)
{
for(j=i;j>=0;j--)
printf("%d\t",a[j]);
printf("\n");
}
return 0;
}

Is This Answer Correct ?    25 Yes 9 No

given integer number,write a program that displays the number as follows: First line :all digits ..

Answer / shams

#include <iostream>
#include<stdio.h>
#include<cstdlib>
#include<unistd.h>
#include<time.h>
#include<string.h>
using namespace std;
int main()
{
int i,b,j,index,n,a[10];
printf("enter a number");
scanf("%d",&n);
b=n;
for(i=0;n!=0;i++)
{
a[i]=n%10;
n=n/10;
}
b=i;
i=i-1;
printf("output\n");
for(;i>=0;i--)
{
for(j=i;j>=0;j--)
printf("%d\t",a[j]);
printf("\n");
for(int k=0;k<b-i;k++)
printf("\t");
}
return 0;
}

Is This Answer Correct ?    11 Yes 4 No

given integer number,write a program that displays the number as follows: First line :all digits ..

Answer / akashdeep

#include<stdio.h>
void main()
{
int a,count=0,b=1,c;
printf("enter a number
");
scanf("%d",&a);
c=a;
while(a>0)
{
count=count+1;
a=a/10;
}
for(int i=0;i<(count-1);++i)
{
b=b*10;
}
while(c>0)
{
printf("%d
",c);
c=c%b;
b=b/10;
}

}

Is This Answer Correct ?    7 Yes 2 No

given integer number,write a program that displays the number as follows: First line :all digits ..

Answer / royalrdx

#include <stdio.h>
#include <math.h>

int main()
{
int n,a,count=0,b;
printf("Enter");
scanf("%d",&a);
n=a;
while(n>0){
count++;
n=n/10;
}

while (count>0)
{
b=pow(10,count);
printf("
%d
",a%b);
count--;
}
return 0;
}

Is This Answer Correct ?    1 Yes 0 No

given integer number,write a program that displays the number as follows: First line :all digits ..

Answer / md. wasifur rahman siyam

#include<stdio.h>
#include<conio.h>
int main()
{
int n,i=0,j,k=1,x,c=0,sum=0,a[100];
printf("
enter the number:");
scanf("%d",&x);
while(x!=0){
a[i++]=x%10;
x=x/10;
c++;
}
printf("
the digits are :
");
printf(" ");
for(j=c-1;j>=0;j--){
for(i=c-k;i>=0;i--){
printf("%d",a[i]);
}
printf("
");
printf(" ");
k=k+1;
}
getch();
return 0;
}

Is This Answer Correct ?    1 Yes 1 No

given integer number,write a program that displays the number as follows: First line :all digits ..

Answer / pavan_mustyala

#include <stdio.h>

int main(int argc, char* argv[])
{
int num = 15;
int i = 1;
int j = 1;

for( ; i <= num; i++)
{
for( j = i; j <= num; j++)
{
printf("%-3d ",j);
}
printf("\n\n");
}

return 0;
}

Is This Answer Correct ?    4 Yes 14 No

given integer number,write a program that displays the number as follows: First line :all digits ..

Answer / mohit

#include<stdio.h>
#include<conio.h>
main()
{
int i,j,n;
printf("enter any number : ");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(j=i;j<=n;j++)
{
printf("%d ",j);
}
printf("\n");
}
getch();
}

Is This Answer Correct ?    11 Yes 25 No

Post New Answer

More C Code Interview Questions

main() { char *p = “ayqm”; char c; c = ++*p++; printf(“%c”,c); }

1 Answers  


String copy logic in one line.

11 Answers   Microsoft, NetApp,


main() { int i; printf("%d",scanf("%d",&i)); // value 10 is given as input here }

2 Answers   IBM,


Write out a function that prints out all the permutations of a string. For example, abc would give you abc, acb, bac, bca, cab, cba. You can assume that all the characters will be unique.

5 Answers   IITR, Microsoft, Nike,


#define DIM( array, type) sizeof(array)/sizeof(type) main() { int arr[10]; printf(“The dimension of the array is %d”, DIM(arr, int)); }

1 Answers  






main() { static int var = 5; printf("%d ",var--); if(var) main(); }

1 Answers  


How to swap two variables, without using third variable ?

104 Answers   AB, ADP, BirlaSoft, Cisco, Cygnet Infotech, HCL, Hewitt, Honeywell, HP, IBM, Infosys, Manhattan, Microsoft, Mobius, Percept, Satyam, SofTMware, TCS, Wipro, Yamaha,


main() { struct date; struct student { char name[30]; struct date dob; }stud; struct date { int day,month,year; }; scanf("%s%d%d%d", stud.rollno, &student.dob.day, &student.dob.month, &student.dob.year); }

1 Answers  


main() { int i = 3; for (;i++=0;) printf(“%d”,i); }

1 Answers   CSC,


main() { struct student { char name[30]; struct date dob; }stud; struct date { int day,month,year; }; scanf("%s%d%d%d", stud.rollno, &student.dob.day, &student.dob.month, &student.dob.year); }

1 Answers  


What is the difference between proc means and proc tabulate ? explain with a simple example when you have to use means or tabulate?

1 Answers  


plz send me all data structure related programs

2 Answers  


Categories