EmbLogic's Blog

Author Archives: Hitendra Verma

structures in c

Structures in c A structure is a collection of variables under a single name. These variables can be of different types, and each has a name which is used to select it from the structure. A structure is a convenient … Continue reading

Posted in Uncategorized | Leave a comment

Program to insert,delete,edit node using structure pointer

head 1.2; access; symbols; locks root:1.2; strict; comment @ * @; 1.2 date 2014.03.27.10.38.34; author root; state Exp; branches; next 1.1; 1.1 date 2014.03.26.10.31.39; author root; state Exp; branches; next ; desc @complete program without display fuction @ 1.2 log … Continue reading

Posted in Uncategorized | Leave a comment

sum of two distances using struct and functions

access; symbols; locks root:1.1; strict; comment @ * @; 1.1 date 2014.03.25.14.53.42; author root; state Exp; branches; next ; desc @sum of two distances using struct and function @ 1.1 log @Initial revision @ text

Posted in Uncategorized | Leave a comment

DIFF BTWN gets(), fgets(), getc(), fgetc() , getchar(), ungetc().

1. All these functions gets(),fgets(),getc(),fgetc(),getchar(),ungetc() …are function is declared in the header file stdio.h. 2.gets() :-it takes single argument.The argument must be a data item representing a string. gets() doesn’t allow to specify the length of the buffer to store … Continue reading

Posted in Uncategorized | Leave a comment

program to read file from n position

head 1.1; access; symbols; locks; strict; comment @ * @; 1.1 date 2014.03.19.09.49.44; author root; state Exp; branches; next ; desc @program to read file from n pos @ 1.1 log @Initial revision @ text

Posted in Uncategorized | Leave a comment

reading file and writing into another using fgetc() and fputc()

head 1.1; access; symbols; locks; strict; comment @ * @; 1.1 date 2014.03.19.09.15.04; author root; state Exp; branches; next ; desc @reading form file and writing into another using fgetc() and fputc() @ 1.1 log @Initial revision @ text

Posted in Uncategorized | Tagged | Leave a comment

started working with mdc(master array using function)

head 1.2; access; symbols; locks root:1.2; strict; comment @ * @; 1.2 date 2014.03.15.16.06.03; author root; state Exp; branches; next 1.1; 1.1 date 2014.03.14.06.52.50; author root; state Exp; branches; next ; desc @this is the initial version,file created and open … Continue reading

Posted in Uncategorized | Leave a comment

program for bubblesort

#include #define size 10 int main() { int arr[size]; int i,j,temp; printf(“Enter the array \n”); for(i=0;i<size;i++) scanf("%d",&arr[i]); printf("The array is :\n"); for(i=0; i < size; i++) printf("arr[%d]:%d\n",i,arr[i]); printf("String after bubble sort "); for(j=0 ; j<size ; j++) { for(i=0 ; … Continue reading

Posted in Uncategorized | Leave a comment

Started working on “Multple data compression and encryption using iterative technique”

head 1.1; access; symbols; locks root:1.1; strict; comment @ * @; 1.1 date 2014.03.14.06.52.50; author root; state Exp; branches; next ; desc @this is the initial version,file created and open using function(). @ 1.1 log @Initial revision @ text @#include”header.h” … Continue reading

Posted in Uncategorized | Leave a comment

create, open ,written and read file using functions()

head    1.1; access; symbols; locks; strict; comment    @ * @; 1.1 date    2014.03.12.12.30.53;    author root;    state Exp; branches; next    ; desc @i have created,read and write a file using function. @ 1.1 log @Initial revision @ text

Posted in Uncategorized | Leave a comment