473,386 Members | 1,693 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

[Commercial] Advance C and Linux System Programming: Hands-OnTraining

Hello All,

Advance C and Linux System Programming are an intensive hands-on
course designed by Concepts Systems to provide a detailed examination
of each topic.
These modules enable professionals and students to rapidly identify
issues critical to their project, and provide them in-depth knowledge
to add Linux support to their product lines in an aggressive time
frame.

Course Highlights:

Advance C:

- Struct ,enums,typedefs, #define
- Arrays & Pointer Arithmetic
- Function Pointers etc
- Dynamic linking
- Segments & Executables
- calling conventions
- Segmentation Faults

Detail syllabus is available at

http://www.conceptssys.com/SyllabusPdf/Adv C.pdf

Linux System Programming:

-Operating Systems Basics
-System Calls for I/O
-Multithreading and Synchronization
-Interprocess communication
-Memory Management
-Memory mapped files
-UNIX/ POSIX files and File Systems
-Pipes

Detail syllabus is available at

http://www.conceptssys.com/SyllabusPdf/LinuxSysPro.pdf
Starting Date : May 24, 2008.
Duration : 1.5 months for each module.
Days & Timings: Saturday and Sunday, 3 Hours Per day.

Venue:
Concepts Systems,
602-603, The Pentagon, Shahu College Road,
Next to Pune-Satara Road,
Near Panchami Hotel, Parvati. Pune - 411009.

Registration: We encourage you to register at the earliest since there
are limited seats.

If you have any queries feel free to call us on 020-24216888 /
9960638738 Or mail us at tr******@conceptssys.com.

About Us:
Concepts Systems is Pune based Training Consultancy having expertise
in core systems. Concepts already has many leading software companies
like EMC, HP, Nvidia,Oracle India, KPIT Cummins etc. as its clients.
Systems Technology Experts having Industry exposure forms backbone of
Concepts Training Division.

Thanks & Regards,
Concepts Systems Team
Jun 27 '08 #1
7 2087
Concepts Systems said:

<snip>
>
Detail syllabus is available at

http://www.conceptssys.com/SyllabusPdf/Adv C.pdf
Not a particularly detailed syllabus, actually - but instructive insofar as
it demonstrates that the author of that syllabus doesn't appear to
understand casting. This is betrayed by his calling it "type casting". In
C, we don't cast types. We cast expressions. It is, in fact, impossible to
cast a type.

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Jun 27 '08 #2
On May 11, 9:49*am, Richard Heathfield <r...@see.sig.invalidwrote:
Concepts Systems said:

<snip>
Detail syllabus is available at
http://www.conceptssys.com/SyllabusPdf/AdvC.pdf

Not a particularly detailed syllabus, actually - but instructive insofar as
it demonstrates that the author of that syllabus doesn't appear to
understand casting. This is betrayed by his calling it "type casting". In
C, we don't cast types. We cast expressions. It is, in fact, impossible to
cast a type.
T x;
U y;

y=(U)x;

What changes about x in this expression? The expression doesn't; it's
still x. The value /might/, eg. if T and U were numeric types. Mainly
it's the type from T to U;

So Type Casting is a better description than Expression Casting or
Value Casting.

Maybe the author was trying to be clear rather than pedantically
precise (and Type Casting is ambiguous in English anyway).

--
Bartc
Jun 27 '08 #3
On 11 May, 09:49, Richard Heathfield <r...@see.sig.invalidwrote:
Concepts Systems said:

<snip>
Detail syllabus is available at
http://www.conceptsys.com/SyllabusPdf/AdvC.pdf

Not a particularly detailed syllabus, actually - but instructive...
You have just exhibited to the world that spamming this
group does work since you bother to read the spam.
Jun 27 '08 #4
Bart wrote:

You snipped attributions.
Richard Heathfield wrote:
>In C, we don't cast types. We cast expressions. It
is, in fact, impossible to cast a type.

T x;
U y;

y=(U)x;

What changes about x in this expression? The expression doesn't; it's
still x. The value /might/, eg. if T and U were numeric types. Mainly
it's the type from T to U;
From section 6.5.4 of n1256:

Syntax

1 cast-expression:
unary-expression
( type-name ) cast-expression

Constraints

2 Unless the type name specifies a void type, the type name shall
specify qualified or unqualified scalar type and the operand shall have
scalar type.

3 Conversions that involve pointers, other than where permitted by the
constraints of 6.5.16.1, shall be specified by means of an explicit
cast.

Semantics

4 Preceding an expression by a parenthesized type name converts the
value of the expression to the named type. This construction is called a
cast.89) A cast that specifies no conversion has no effect on the type
or value of an expression.

5 If the value of the expression is represented with greater precision
or range than required by the type named by the cast (6.3.1.8), then the
cast specifies a conversion even if the type of the expression is the
same as the named type.

Jun 27 '08 #5
On May 11, 4:50*pm, santosh <santosh....@gmail.comwrote:
Bart wrote:

You snipped attributions.
Richard Heathfield wrote:
In C, we don't cast types. We cast expressions. It
is, in fact, impossible to cast a type.
T x;
U y;
y=(U)x;
What changes about x in this expression? The expression doesn't; it's
still x. The value /might/, eg. if T and U were numeric types. Mainly
it's the type from T to U;

From section 6.5.4 of n1256:
...
4 Preceding an expression by a parenthesized type name converts the
value of the expression to the named type. This construction is called a
cast.89) A cast that specifies no conversion has no effect on the type
or value of an expression.
I mentioned expressions, values and types, and that the latter two can
change.

This mentions that values can change; also 'has no effect on type or
value' suggests that a cast that specifies a conversion can affect
both value and type.

Richard Heathfield mentioned casting 'expressions'.

A lot of the stuff in this syllabus isn't even part of the standard.

My point is that Type Casting seems perfectly acceptable (especially
as the English doesn't appear to be of the best).

--
Bartc
Jun 27 '08 #6
Spiros Bousbouras said:
On 11 May, 09:49, Richard Heathfield <r...@see.sig.invalidwrote:
>Concepts Systems said:

<snip>
Detail syllabus is available at
>http://www.conceptsys.com/SyllabusPdf/AdvC.pdf

Not a particularly detailed syllabus, actually - but instructive...

You have just exhibited to the world that spamming this
group does work since you bother to read the spam.
That's one way of looking at it. Another way, the way I look at it, is
this: it's possible that some people might be unwise enough to take the
advertisement on trust; by posting a rebuttal, even a little one, it may
be that I succeed in saving at least one newbie from wasting his
hard-earned cash on a course that is very likely to be broken.

If in the process I attract flak for "responding to spam", so be it.

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Jun 27 '08 #7
Richard Heathfield wrote:
... the author of that syllabus doesn't appear to understand casting.
This is betrayed by his calling it "type casting". In C, we don't cast
types. We cast expressions. It is, in fact, impossible to cast a type.
Well that explains the UK's reluctance to apply metric conversions to
miles per gallon. Okay US, what's your excuse?

--
Peter
Jun 27 '08 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: inquirydog | last post by:
Hello- I, the inquirydog, would like to solicit suggestions for a new web page I am making: I am creating a simple website that will translate concepts between windows os's, Linux, and the...
383
by: John Bailo | last post by:
The war of the OSes was won a long time ago. Unix has always been, and will continue to be, the Server OS in the form of Linux. Microsoft struggled mightily to win that battle -- creating a...
3
by: mairhtin o'feannag | last post by:
Hello, Since DB2 Cluster Certification Guide is out of print and I cannot seem to get my hands on a copy, is there a publication that would give me a "cookbook" approach to setting up a cluster...
375
by: rkusenet | last post by:
This article is very bleak about future of DB2. How credible is the author. http://www.eweek.com/article2/0,1895,1839681,00.asp
27
by: Mike | last post by:
Open source programs in general suck pretty bad also. Here are some loose facts regarding why projects like Linux, PHP, MYSQL, and other open source programs suck: - Linux is simply a clone of...
6
by: Internet User | last post by:
Can anyone point me to examples of commercial software packages (i.e. sold through VARs or retail channels) that were programmed in VB.net? Thanks in advance.
1
by: Murali | last post by:
Greetings from Pivot Systems, Inc.!!! Pivot Systems, Inc. established in 1997 is a global software services company, California corporation with several customers in the Silicon Valley,...
0
by: Concepts Systems | last post by:
Hello All, With a growing demand for Linux System Professionals, we are pleased to announce a new weekend batch of "Advance C" and "Linux System Programming" for working professionals and...
1
by: Concepts Systems | last post by:
Hello All, Kernel Programming is the key to the digital city of device drivers: If you know the language for drivers you can get a device to do almost anything you want. Learn how to write...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.