C4Swimmers Newsletter  

Algorithms

Algorithms and its implementations with C/C++

(Algorithm) Sorting Algorithms in C

Algorithm : Sorting Algorithms in C

(Download) PROJECTS AND PROGRAMS FOR BEGINEERS in c++

(DOWNLOAD) PROJECTS AND PROGRAMS FOR BEGINEERS in c++

1.Accept radius & Produce Area
2. Area of Triangle
3. Calculate Electricity Bill
4. Calculation
5. Celsius to Farenheit
6. Chack for Odd or Even
7. Conversion to Yard Feet Inches
8. Conversion to Yard Feet Inches
9. Display using cout
10. Find Factorial
11. Greatest of 3 nos
12. Greatest of 3 nos using conditional
13. Multiplication Table
14. No of Days Years Weeks
15. Print Quotient & Remainder

(CODE) Boyer-Moore-Horspool String Searching

(CODE) Boyer-Moore-Horspool String Searching

As another example of how a class can represent an abstraction, consider the problem of searching a char* string for a given pattern. In the C library there is a strstr() function for doing this. But suppose that we wish to implement our own scheme, based on one of the relatively new high-performance algorithms for searching like the Boyer-Moore-Horspool one (see the book "Information Retrieval" by William Frakes for a description of this algorithm).

(DOWNLOAD) PROJECTS AND PROGRAMS FOR BEGINEERS in c++

(DOWNLOAD) PROJECTS AND PROGRAMS FOR BEGINEERS in c++

1.Calculator ( Using Switch Case )

2.Pascals Triangle ( Using Switch Case )

3.An Output Question # 1

 4.An Output Question # 2

 5.Array in Given Pattern

6.Bubble Sort

 7. Insert Delete From 1-D Array

8.Merge 2 Arrays

9.Multiplication Table

(Interview) Frequently Ask Question on C/C++/Algorithm

(Interview) Frequently Ask Question on C/C++/Algorithm

C++: Libraries

C++: Common & Differences with C

(ARTICLE) Preface to Bjarne Stroustrup's Programming: Principles and Practice Using C++

(ARTICLE) Preface to Bjarne Stroustrup's Programming: Principles and Practice Using C++

Bjarne Stroustrup explains why he didn't write the easiest book on beginning programming,but instead tried to write the easiest book on real-world programming.

(Article) Finding the right algorithm for digital frequency synthesis on a DSP

Article: Finding the right algorithm for digital frequency synthesis on a DSP

My score!

Quiz Results

--------------------------------------------------------------------------------

1. Several declarations involving pointers are shown below. Pick the correct solution.
int *ptr;
You answered: B (ptr is a pointer to an integer quantity) Correct!

2. Several declarations involving pointers are shown below. Pick the correct solution.
int *ptr[10];
You answered: C (ptr is a 10-element array of pointers to integer quantities) Correct!

3. Several declarations involving pointers are shown below. Pick the correct solution.
int (*ptr)[10];

Job Opening: QA Manager - Software Testing

Dear c4swimmers,

We have some urgent requirements with our Client in India.

About Client: It’s a Fortune 25 top Software MNC with Multiple offices across USA, UK and India.
Current open requirements are for INDIA office.

If you feel you are fitting to any of position below send your updated resume, and contact details to swiftsol.consultant@gmail.com

Position: Manager – Quality Engineering

Job Experience: 8 - 15 yrs in software QE
Job Function: Lead Quality Assurance Team
Location: Northern Part of India

(FAQ) FREQUENTLY ASKED PROGRAMS IN C, C++

FREQUENTLY ASKED PROGRAMS(FAQs) IN C, C++

 1. Program to convert upper case to lower case or lower case to upper case .

 2. Program to count no. of characters,no. of blanks,no. of words & no. of lines in a multi line string

 3. Program  to correct rudimentary syntax errors.

 4Program to encrypt & decrypt a given string.

 5. Program for Drop Down in C

 6. Program for finding the prime numbers

 7. Program for finding the sum of digits of a five digit number

 8. Program for Prime Number Generation

 9. Program to calculate frequency of vowels in a string

 10.Program to calculate the sum of series

 11.Program to calculate the Typing Speed

 12.Program to copy its input to its output replacing string of one or more blanks by a single blank.

 13.Program to display all vowels in a i/p line of text

 14.Program to find the type of the triangle made by i/p values of its coordinates of its vertices

 15.Program to find wheather a given year is leap year or not.

 16.Program to Multiply Two Matrices

 17.Program to reverse the input string

 18.Program. to find & replace any desired character from the input text

 19.Prg. to sort any no. of numeral i/p in ascending or descending order

 20.Prg. to find the existence & frequency of an i/p substring in a main string

PLACEMENTS

HI
Here is the hot and fast opening with the companies like

* HP
* Inmage SYSTEMS (HYDERABAD)
* IBM--ISL

The opening is with system Programming having strong expertise in

*C and UNIX
* Kernel Programming
*Unix Internals
Experience level (4-8) Yrs.

Please kindly send me your updated profile ASAP with the relevant criterias to

catchmeera@gmail.com

THANKS
MEERA

Logic Programming in C - Free source code

Logic Programming in C

For more info, Visit:
http://www.stenmorten.com/English/llc/llc.htm

A library of internal sorting routines

A library of internal sorting routines

This is a collection of sorting algorithms, in C. All the examples are thoroughly tested using random input generation and assertions, there are no known bugs.

Keywords: insertion sort, shellsort, radixsort, heapsort, quicksort, quickersort, sedgesort (Robert Sedgewick quicksort optimization)

Visit http://www.yendor.com/programming/sort to learn more about sorting techniques.

(QUESTIONS) ANSWER THIS:: C, C++ Questions

ANSWER THIS:: C,C++ Questions

1)Which is faster and why
for(i=0;i<1000;i++) or for(i=1000;i>=0;i--)

2)how can we include other than a .h using #include

3)which is faster and why

fun(typedef struct a X) or fun(typedef struct a *pX)

4)how can we print "HELLO WORLD" with out using semicolon

5) what is the purpose of volatile modeifier

6) how can we avoid multiple enteries of files included by #include

6)why is enum is better compared to #define constant

TOP NOTCH COMPANIES IN INDIA

Hi Guys,
Here we do have good
challenging job openings with the various top notch IT companies for 4+ yrs of Experience Candidates.

The companies include
*YAHOO
*AMAZON
*JUNIPER NETWORKS
*GOOGLE
*MICROSOFT

Kindly revert to me with your updated profile and you can also write to me
for any further Queries @

catchmeera@gmail.com

Regards
Meera

Tech Talk About C++ and C : Extensive C++ and C FAQ

Tech Talk About C++ and C : Extensive C++ and C FAQ

Discuss related issues in give link..
1. What book do you recommend?
2. Where is the FAQ for the various C and C++ newsgroups?
3. Can I really get the C++ Standard electronically for $18?
4. Can I get Standard C electronically too?
5. What's wrong with code that uses void main()?
6. What about returning from main()?
7. Where does the int returned from main() go?
8. What's the difference between endl and '\n'?
9. Why can't I fflush(stdin), or any input stream??
10. How do I remove all chars from a stream??

(TUTORIAL) C++ Programming Language Tutorials

C++ Programming Language Tutorials

Lectures Handouts

1. Overview of the C-portions of C++ (e.g., loops, structs, arrays, basic data types, etc.)

2. A quick tour through C++, focusing primarily on classes, templates, inheritance, and dynamic binding.

3. An extensive tour through C++ language features, illustrating the major and minor differences compared with C.

4. An in-depth look at defining abstract data types in C++, focusing primarily on classes, templates, and exception handling.

5. An in-depth look at C++ single and multiple inheritance.

(TIPS & TRICKS) C++ Pitfalls, by: Cay S. Horstmann

C++ Pitfalls, by: Cay S. Horstmann

C++ Pitfalls with Source Code EXAMPLES

What is a pitfall?
Constructor pitfalls
Destructor pitfalls
Stream pitfalls
Overloading pitfalls
Exception pitfalls
Container pitfalls


Click on the link to see the Article...

Courtesy:
http://www.horstmann.com/cpp/pitfalls.html

(INTERVIEW) An interview with Bjarne Stroustrup

An interview with Bjarne Stroustrup

An interview with Bjarne Stroustrup
— In this interview, Bjarne Stroustrup, the creator of C++, talks about the object-oriented revolution, the rigors of real-world software development, the continuing divergence of C and C++, and some additions to the C++ standard that he'd like to see. (2,000 words)

http://linux.sys-con.com/read/32929.htm

Other Interview Links:

http://www.eptacom.net/pubblicazioni/pub_eng/stroustr.html

(FAQ) Operating System (OS) Interview FAQ Questions.

Operating System (OS) Interview FAQ Questions.

1. What is MUTEX ?
2. What isthe difference between a ‘thread’ and a ‘process’?
3. What is INODE?
4. Explain the working of Virtual Memory.
5. How does Windows NT supports Multitasking?
6. Explain the Unix Kernel.
7. What is Concurrency? Expain with example Deadlock and Starvation.
8. What are your solution strategies for “Dining Philosophers Problem” ?
9. Explain Memory Partitioning, Paging, Segmentation.
10. Explain Scheduling.
11. Operating System Security.
12. What is Semaphore?
13. Explain the following file systems : NTFS, Macintosh(HPFS), FAT .

Syndicate content