Home Programming C_Language

C_Language

This category is for c programming language.

Building C/C++ code on the Command Line ( Visual Studio / GNU GCC ) for windows

Building C/C++ code on the Command Line using Visual Studio for windows

0
If you read our previous post ie., Best C / C++ Compiler : Compilation using gcc , it means now you are in love with C-programming. Well today we are...
Top 5 android apps a programmer must have

Top 5 Android Apps a Programmer must have

2
It's time to do something exciting for Android users, here we are presenting Top 5 Android Apps a Programmer must have . If you are a programmer or Love...
best compiler for c / c++

Best C / C++ Compiler : Compilation using gcc

0
Searching for best C compiler for compilation?? You must have to stop searching here. gcc/g++: Gross compiler for C /C++ is the best compiler for execution or compilation of c/c++...

Structures In C

0
Why we use Structures In C ? When we deal with real world data ,we don't usually deal with only int,char,float.. Instead of this we deal with real world entities...
Use Pointers in c / C pointers

C pointers and their use

1
C Pointers : Use of Pointers in C with simple Steps C Pointers  are the most difficult feature of C for beginners .Other languages have Pointers  but only few use them...
Format string exploits

Format string exploits

0
Format string exploits became public in late 2000. It is easy to find errors in format string in comparison of buffer overflows. Once errors are spotted, they are usually...
Basic Linux exploits: Function Calling Procedure

Basic Linux exploits: Function Calling Procedure

0
Note: Hacking is not a joke so please keep patience and learn it step by step. Note: Before reading this post you must read : Learn hacking...
c program Machine code

How to use Debugger tool objdump in Linux

0
Debugger Tool Objdump in Linux Debugger Tool objdump: C feel more familiar and C compiler exist in every operating system .Basically Linux is a free operating system that every has...

How to solve LASTDIG problem in SPOJ ?

0
Last digit problem in SPOJ looks simple but it contains a important concept of Modular exponentiation. If want AC in submission then you have to know about this concept ,to...

C-Programming Statements: continue and goto statements

0
Lets continue with the statements .... Continue statement Continue statement leads to the end of the current iteration and leads to the new iteration. It allows the compiler to reach the...
C Operators

Operators in C /C++ programming & Their Use

0
An Operator is a  symbol that tells compiler to perform certain mathematical or logical operations. Operators are usually same in all programming language like c/c++ , java , python etc. Built-in...
strings and their use in c

Strings:Strings and their use in C programming

0
Strings are the set of character stored in a character array likewise we store group of integers in int array. Strings are one of the most important and wide...
2-D array of character

More In Arrays:2-D Array of Character,Array of Pointers to String,mallaoc and their Uses

0
2-D Array Of Characters These are similar to the 2-D array of integers For EX:- In arr ,2 are the number of rows and 3 defines the size of each...
if-else decision control

SELECTION STATEMENT: IF-ELSE STATEMENT

0
SELECTION STATEMENT: IF-ELSE STATEMENT The if keyword is used to execute the statements/ block of statements . If the condition is true then those statements will be executed else the...

Function In C/C++ Programming

0
Functions as the name suggest "to do some task " . Similarly  in c/c++ ,functions are group of some codes that together performs a certain task. Every C/C++ program...

Reverse String in c++ using sstream

0
One of  good question can be asked about string is How to Reverse String ?  You can do in many ways but I am going to show you , the...
Exploit Shell code using Command-line

Exploit using shell code from command line

0
After reading our previous post:Exploiting buffer overflows using command line it's time to do Exploit Shell code using Command-line but I think you do want to clear your doubt...

How to use file input/output

0
File Input/Output  Why we need file input/output programming? As we know it is not enough to just display the data on screen because if data is large  ,only a limited amount...

C++Advance (STL) Map

0
Here I want to clear the concepts of map in short.There are 4 associate containers (binary tree) : set ,multiset ,map and multimap .Applications of map are very important...
IT pros ,FALLOUT 4 GAMEPLAY FOOTAGE LEAKED! C First Program

C First Program

0
Let’s start our C First Program through telling you basics about C language. Each and every coding line has its meaning and significance this tutorial will tell you about...
Basic Linux Exploits : Moving towards exploit

Basic Linux Exploits: Moving towards exploits

0
Note: Hacking is not a joke so please keep patience and learn it step by step. If you have read all our previous posts , you are ready to exploits the...
arrays of structure :buffercode

EXPLORING C STRUCTURES PROGRAMMING:Arrays of Structures

0
In our previous post you learn Intro to Structures in c programming that is why use structures in C,Syntax of structures in C ,Declaration of structures ,Declaration of structures...
c data types

Getting Started:C Data Types and Constants

0
At primary stage C data types are divided into 3 categories : integer ,character and real. Let us explore these data types. // Integer : It's simple to understand that...