LDIV(3) BSD Library Functions Manual LDIV(3)NAME
ldiv -- return quotient and remainder from division
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <stdlib.h>
ldiv_t
ldiv(long num, long denom);
DESCRIPTION
The ldiv() function computes the value num/denom and returns the quotient and remainder in a structure named ldiv_t that contains two long
members named quot and rem.
SEE ALSO div(3), imaxdiv(3), lldiv(3), math(3)STANDARDS
The ldiv() function conforms to ISO/IEC 9899:1999 (``ISO C99'').
BSD November 14, 2001 BSD
Check Out this Related Man Page
DIV(3) BSD Library Functions Manual DIV(3)NAME
div, ldiv, lldiv, imaxdiv -- quotient and remainder from division
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <stdlib.h>
div_t
div(int num, int denom);
ldiv_t
ldiv(long int num, long int denom);
lldiv_t
lldiv(long long int num, long long int denom);
#include <inttypes.h>
imaxdiv_t
imaxdiv(intmax_t num, intmax_t denom);
DESCRIPTION
These functions compute the value of num / denom and return the quotient and remainder in a specific divison structure. The functions differ
only with respect to the type of the return value and the parameters.
The returned structure always contains two members named quot and rem, denoting the quotient and the remainder. The type of these correspond
with the underlying type of the function.
EXAMPLES
The following example demonstrate the basic usage of the functions.
div_t d;
int a = 4321;
int b = 1234;
d = div(a, b);
(void)printf("%d %d
", d.quot, d.rem);
SEE ALSO fast_divide32(3), math(3), qdiv(3)STANDARDS
All described functions conform to ISO/IEC 9899:1999 (``ISO C99'').
BSD April 13, 2011 BSD
hi, i recently changed my shell to bash and now everytime i log in i get this error message.
bash: /net/hu5/davidlee/.profile-sun-5: line 48: syntax error near unexpected to
ken `fi'
bash: /net/hu5/davidlee/.profile-sun-5: line 48: ` if ] then break; fi'
any ideas, i´m no expert unix... (1 Reply)
i was playing with maxint stuff when i found that i could not find a propper way to do
a printf() auf a imaxdiv_t. since nobody seems to use it google found nothing.
i tried to find a PRIxy code but no success.
example:
#include <stdio.h>
#include <inttypes.h>
int main()
{
... (2 Replies)
Quick question.
I can not get the context corrert on this code.
opendir(DIR, ".");
@fileldiv = grep(/l*/,readdir(DIR));
closedir(DIR);
I am trying to search all html files within a dir that start with l.
Thanks for your help. (1 Reply)
Hi All,
I need usleep command to use in one of my shell script. I am working on SunOS 5.9. Where usleep command is not available. Is there any way to use usleep command in SunOS.
Thanks In Advance,
chidhu (5 Replies)
Hi,
I am trying to edit an XML file automatically but my regex and shell script knowledge is very limited. I would appreciate your help fellows.
The XML file has this structure:
<?xml version="1.0" encoding="UTF-8"?>
<map map_file="maps/world.swf" zoom="350%" zoom_x="-115%"... (1 Reply)
Hi,
My input has much more lines, but few of them are below
pin(IDF) {
direction : input;
drc_pinsigtype : signal;
pin(SELDIV6) {
direction : input;
drc_pinsigtype : ... (3 Replies)
I wanted to parse a text file and join in specific format. please suggest me how to get this done..
The output should be in fasta format which consists of lines starting with ID, PT, PA and Sequence. "//" the two slashes are dividing lines between two different sequences.
Like... (10 Replies)
I have following result.log file (always has 2 lines) which I need to process,
cat result.log
name.cmd.method,"result","abc","xyz";
name="hello,mine.12345,"&"tree"&" xyz "&" tree "&" xyz",
data="way,"&" 1"&"rate-me"&"1"&"rate-me",str="",ret="";
now I need to extract the strings/data as... (4 Replies)