Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #44.3K
~12.8K People Reached
Favorite Tags

4 Posted Topics

Member Avatar for playagain

Stack is a linear data structure in which item insertion or deletion takes place at only one place called TOP. Stack is also called as LIFO or restricted list. **What is LIFO ?** *LIFO - Last In First Out* It is the principle which specifies that the data item that …

Member Avatar for priya..
-2
12K
Member Avatar for greg.lafrance.96

#include<stdio.h> #include<conio.h> #include<string.h> void main() { char st1[30],st2[30]; clrscr(); printf("Enter a string:"); gets(st1); strcpy(st2,st1); strrev(st2); printf("\nOriginal : %s\nReverse: %s",st1,st2); getch(); } # you might also like # [Strings in c ( 1-Dimensional character arrays)](http://program2do.blogspot.in/2014/12/strings-in-c-1-dimensional-character-arrays.html) [String copy (strcpy) in c](http://program2do.blogspot.in/2014/12/string-copy-strcpy-in-c.html) [String length (strlen) in c](http://program2do.blogspot.in/2014/12/string-length-strlen-in-c.html) [String comparision (strcmp) in c](http://program2do.blogspot.in/2014/12/string-comparision-strcmp-in-c.html) [String …

Member Avatar for TalhaMoazSarwar
0
445
Member Avatar for tatendamiriam.mungombe

Well if you are a begginer and looking for programs with verified outputs then i suggest you read my blog [Program2do](http://program2do.blogspot.in/p/c-programs.html)

Member Avatar for Arshad_2
0
128
Member Avatar for Member #917847

I have executed some programs related to liked lists [To implement singly liked list](http://program2do.blogspot.in/2015/01/c-program-to-create-singly-linked-list.html) [To implement circular linked list](http://program2do.blogspot.in/2015/01/c-program-to-implement-circular-linked-list.html) Hope you like them.

Member Avatar for Arshad_2
0
141

The End.