// Codes that will take input from the user in Decimal & convert it into Octal in C programming language
#include <stdio.h>
int main ()
{
int num, re,re2,sum=0, oct = 0;
printf("Decimal: ");
scanf("%d", &num);
while (num > 0)
{
re = num % 8;
oct = (oct * 10) + re;
num = num / 8;
}
while (oct>0)
{
re2 = oct % 10;
sum = (sum * 10) + re2;
oct = oct / 10;
}
printf("Octal: %d\n", sum);
}
Good
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
thanks sweetheart
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
tor mayre baap :v
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
tor fadar madar
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
vai asob ki likhsen mia ??
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
he he mia 69 likhle vlo hoito
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
finish
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
yes
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Excecelent Post
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
thanks vai
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
:)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
:)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Congratulations! This post has been upvoted from the communal account, @minnowsupport, by riyasaat from the Minnow Support Project. It's a witness project run by aggroed, ausbitbank, teamsteem, theprophet0, and someguy123. The goal is to help Steemit grow by supporting Minnows and creating a social network. Please find us in the Peace, Abundance, and Liberty Network (PALnet) Discord Channel. It's a completely public and open space to all members of the Steemit community who voluntarily choose to be there.
If you like what we're doing please upvote this comment so we can continue to build the community account that's supporting all members.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit