Sponsored Content
Full Discussion: How this works?
Top Forums UNIX for Advanced & Expert Users How this works? Post 302449601 by ungalnanban on Tuesday 31st of August 2010 03:54:46 AM
Old 08-31-2010
MySQL

you remove the #include<unistd.h> header file then see what error it is saying.

see the following example.
in aa.c file content is
Code:
int ss=2;

then I include the file in the following program.
Code:
#include<stdio.h>
#include "aa.c"
main()
{
        printf("%d",ss);
}

it will work. but I didn't declare the ss in this file.

how it's work? did you understand this example with your code.

the fork variable is declared in #include<unistd.h> file. so it's not showing the error.

if you are using vim. editor then place the cursor on the "#include<unistd.h> " and hit gf then the "unistd.h" file will open. then search the variable fork.
This User Gave Thanks to ungalnanban For This Post:
 

10 More Discussions You Might Find Interesting

1. Linux

How does NORET_TYPE works ?

Hi, I was looking at the panic() code in linux kernel which is defined as: 51 /** 52 * panic - halt the system 53 * @fmt: The text string to print 54 * 55 * Display a message, then perform cleanups. 56 * 57 * This function never returns. 58 */ 59 60 NORET_TYPE void panic(const char *... (1 Reply)
Discussion started by: amit4g
1 Replies

2. Shell Programming and Scripting

Help it works but its to SLOW

I am a novice at shell scripting. I have managed to cobble together a script that does exactly what I need it to do. However I am gathering information from 700+ devices. This script takes hours to complete the task. Is there a better way of doing it than what I have listed here? This script... (10 Replies)
Discussion started by: Garlandxj
10 Replies

3. UNIX for Dummies Questions & Answers

How ls | wc -l works?

ls displays files in tabbed output. Say a directory contains 3 files. ls will list all 3 in one line. So, I expect ls | wc -l to give 1, but it counts the nr of files and gives 3. Can someone explain how this works? (3 Replies)
Discussion started by: krishmaths
3 Replies

4. Shell Programming and Scripting

Still trying to get a grep -c that works

I am trying to get a count of each line sub runit2 { my ($file1a, $file2a) = @_; my $file1_vala = $file1a->get; my $file2_vala = $file2a->get; open (FILE1a, "$file1_vala") or die; open (FILE2a, "$file2_vala") or die; chomp(my @strings = <FILE2a>); while (1) { foreach $pattern... (4 Replies)
Discussion started by: popeye
4 Replies

5. Programming

how this works?

pls explain me how this works.... DECODE (SUBSTR (field, 1, 1),'''', '''''' || field || '''','''' || field || '''') here field is a column in an oracle table.... (7 Replies)
Discussion started by: vijay_0209
7 Replies

6. UNIX for Dummies Questions & Answers

>./a.pl works, >a.pl - does not

When I try to execute script, I get message: >aa.pl zsh: command not found: aa.pl but >./aa.pl works OK. What to change in environment to force the former way to work? Thank you, Alex Z (4 Replies)
Discussion started by: zzol
4 Replies

7. Shell Programming and Scripting

[ask]how does sed -e 's/<[^>]*>//g' works?

I found this command, sed -e 's/<*>//g', will return the content of a line with pattern something like this, <tag1>content</tag1>.. How does this works? What does sed -e 's/<*>//g' actually do? What if I wanted to get content of a line with pattern something like this, content? thanks.. (5 Replies)
Discussion started by: 14th
5 Replies

8. Shell Programming and Scripting

How does a if works in shell

Hi, I need to compare and get an output for values greater than "X10" (values contain both characters and numbers) using if loop... FOR EG: I want to export values greater than X10, i.e., in-case if the value is X11 and greater than the "if" part to be executed if the value is X9 and... (2 Replies)
Discussion started by: shivashankar_S
2 Replies

9. UNIX for Dummies Questions & Answers

How zcat works?

Hi, just i would like to know, how will be the response if you try to read a 40GB compressed file using zcat. a)Uncompress the 40GB file and have it in the disk. use cat to view the steps. b)Use zcat directly to view the compressed file? What are the steps being occurred in step (b)? Where... (3 Replies)
Discussion started by: pandeesh
3 Replies

10. Shell Programming and Scripting

How mailx -r works?

I'm using Sun Solaris. I used mailx -r "MyEmailId" -s "sub" "toEmailID" from my unix id and it worked. But when i run the same script from other's unix id it works as well. mean any one in my environment can mail to other's email without my knowledge. My questions are How it works and why it... (1 Reply)
Discussion started by: kg_gaurav
1 Replies
CONSTANT(3)								 1							       CONSTANT(3)

constant - Returns the value of a constant

SYNOPSIS
mixed constant (string $name) DESCRIPTION
Return the value of the constant indicated by $name. constant(3) is useful if you need to retrieve the value of a constant, but do not know its name. I.e. it is stored in a variable or returned by a function. This function works also with class constants. PARAMETERS
o $name - The constant name. RETURN VALUES
Returns the value of the constant, or NULL if the constant is not defined. ERRORS
/EXCEPTIONS An E_WARNING level error is generated if the constant is not defined. EXAMPLES
Example #1 constant(3) example <?php define("MAXSIZE", 100); echo MAXSIZE; echo constant("MAXSIZE"); // same thing as the previous line interface bar { const test = 'foobar!'; } class foo { const test = 'foobar!'; } $const = 'test'; var_dump(constant('bar::'. $const)); // string(7) "foobar!" var_dump(constant('foo::'. $const)); // string(7) "foobar!" ?> SEE ALSO
define(3), defined(3), The section on Constants. PHP Documentation Group CONSTANT(3)
All times are GMT -4. The time now is 10:30 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy