Learn how to Make Money Online doing freelancing, Affiliate Marketing, Blogging and many more ...
Go4Expert
Go4Expert RSS Feed

Go Back   Programming and SEO Forum >  Go4Expert > Articles / Source Code > Programming

Post New Thread  Submit New Article  Copy HTML to Clipboard  Copy BBCode to Clipboard  | More
Tutorials and Source Code in : C-C++ Bookmarks Forum Tools Search this Forum
Announcement
Views: 17,887 View Announcement Announcement: Rules for Duplicate Article Submission
10-08-2008 shabbir (Go4Expert Founder)
  Rating Article / Author Last Post Reverse Sort Order Replies Views
Thumbs up
Thread Rating: 1 votes, 5.00 average. bashamsc
If two process are there and one shared memory is there. One wants to write the data and another wants to read the data to the shared memory. I have written a program in which if process1 is writing to shared memory another will wait and vise varsa. To undersand these programs one should have...
Yesterday 10:39 AM
by banty_raju123 Go to last post
34 17,072
Red face
shabbir
Introduction In C you can effectively change the value of the constant variable. Just compile the following program and you will see the output. void main() { int const i=123; int *ip;
07-28-2010 08:26 AM
by qingqing Go to last post
6 2,715
Exclamation
mriganka
Original Non English Version here. For simple applications, it's enough just to rely on automatic memory management through local variables. But once the data become larger, it is no longer imperative to request memory from the heap and manage. Content Function Families Allocators ...
07-27-2010 11:15 AM
by mriganka Go to last post
7 949
 
Sanskruti
Opening A File Before we can write information to a file on a disk or read it, we must open the file. Opening a file establishes a link between the program and the operating system, about, which file we are going to access and how. We provide the operating system with the name of the file and...
07-23-2010 01:10 PM
by missnirupma Go to last post
9 85,584
 
Thread Rating: 1 votes, 5.00 average. shabbir
Most often a question comes in my mind that why OutputDebugString does not take variable no of arguments like the TRACE or printf function. I dont know the reason why but I have a solution to the problem. This article is for those OutputDebugString fan's who are annoyed to use the CString and...
07-22-2010 04:43 PM
by shabbir Go to last post
13 11,799
Lightbulb
shabbir
InFix to PostFix Introduction Infix Expression : Notation in which the operator separates its operands. Eg (a + b) * c. Infix notation requires the use of brackets to specify the order of evaluation. Postfix Expression :
07-17-2010 08:51 PM
by mohammad xxx Go to last post
24 45,997
Smile
techgeek.in
Today we will discuss about Sockets programming paradigm, elements of Sockets applications, and the Sockets API. The Sockets API allows to develop applications that communicate over a network. The network can be a local private network or the public Internet. An important item about Sockets...
07-17-2010 03:14 PM
by shabbir Go to last post
2 1,354
Smile
techgeek.in
Inheritance is a feature in object-oriented programming which is very similar to the way we inherit characteristics from our parents. Characteristics in object-oriented programming terms are attributes and behaviors of a class—that is, the data and methods of a class. Inheritance is a...
07-06-2010 05:30 PM
by Myfreelancepaul Go to last post
3 1,210
 
coderzone
The below code is a calculator in plain C. It does not take into account the operability of bodmas but just one operation at a time. The main thing in the source code below in the scanf which scans the input as number symbol number just as in case of normal calculator. #include<stdio.h> ...
06-28-2010 03:55 AM
by newtosee Go to last post
13 37,409
 
shabbir
C implementation of double linked list #include <stdio.h> #include <conio.h> #include <stdlib.h> #include <string.h> #define N 100 struct dlinklist {
06-19-2010 08:54 AM
by sateshb Go to last post
2 23,654
Cool
lionaneesh
A simple code of Http-Web-Server in C done by a beginner level programmer. Please suggest if you liked it and lets make it better !! Hows that!!! The Code #include<stdio.h> #include<string.h> #include<arpa/inet.h> #include<netdb.h> #include<sys/types.h> #include<sys/socket.h>
06-17-2010 07:20 PM
by shabbir Go to last post
7 1,168
 
shabbir
I thought of sharing the code snippet. It just does the basic operations like inserting a node at the end of the linked list and deletion of any particular node in the linked list. The deletion of a node in linked list is based on the data of the node and not on the index at which data is located....
06-14-2010 10:23 AM
by seangtz Go to last post
4 20,167
Thumbs up
Amit Ray
WHAT IS A UNION A union, is a collection of variables of different types, just like a structure. However, with unions, you can only store information in one field at any one time. You can picture a union as like a chunk of memory that is used to store variables of different types. Once a new...
06-12-2010 11:22 AM
by Manojbijnori Go to last post
8 36,323
Smile
techgeek.in
Templates is a concept which enable us to define generic classes and functions and thus provides support for generic programming. Generic programming is an approach where generic types are used as parameters in algorithm so that they work for variety of suitable data types and data structures. A...
06-01-2010 06:16 PM
by shabbir Go to last post
2 769
Smile
techgeek.in
In the previous article I explained you about the Templates in C++. C++ comes with the Standard Template Library, or STL, which includes many different types of containers, each with its own set of advantages (and disadvantages). The C++ Standard Template Library is a very large library of...
06-01-2010 06:16 PM
by shabbir Go to last post
1 517
Smile
techgeek.in
To the programmers it is very common concept that bugs are of two types i.e logical errors and syntactic errors. Poor understanding of the problem and solution procedure leads to logical errors whereas, the syntactic errors arise due to poor understanding of the language itself. We can detect these...
06-01-2010 06:16 PM
by shabbir Go to last post
1 594
 
techgeek.in
Introduction In computer Science and mathematics sorting is any technique that puts elements of a list in a certain numerical or lexicographical order.We will discuss some of the commonly used sorting algorithms which has been implemented in various high level languages like C, C++,...
05-20-2010 01:39 PM
by rahul13 Go to last post
11 2,275
 
shabbir
Program for singly circular linked list which inserts, deletes, searches .... data in it #include <stdio.h> #include <conio.h> #include <stdlib.h> #include <string.h> /***** Structure template *****/ struct list{
05-18-2010 08:14 PM
by enerst Go to last post
37 53,029
Post
Thread Rating: 4 votes, 4.00 average. coderzone
/*question number 1*/ int z,x=5,y=-10,a=4,b=2; z = x++ - --y * b / a;What number will z in the sample code above contain? Choice 1 5 Choice 2 6 Choice 3 10 Corrected by buddy by running the program Choice 4
05-18-2010 07:19 AM
by ishit Go to last post
112 147,373
Smile
techgeek.in
Introduction A command line argument is a parameter which is passed to a program at the time or instant when it is invoked or executed from the command line .This is accomplished by passing information to main() method of the program. It is the information that directly follows the program’s...
05-16-2010 07:40 PM
by shabbir Go to last post
3 1,719
Post New Thread  Submit New Article  Copy HTML to Clipboard  Copy BBCode to Clipboard  | More

Display Options Currently Active Users
Showing articles 1 to 20 of 211 9 (0 members & 9 guests)
 
Forum Tools Search this Forum
Search this Forum :

Advanced Search
Bookmarks

New comments New comments More than 15 replies or 150 views Hot articles with new comments
No new comments No new comments More than 15 replies or 150 views Hot article with no new comments
Closed Thread Article is closed  
 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
 

All times are GMT +5.5. The time now is 05:33 AM.