Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #27.9K
Ranked #3K
~1K People Reached
Favorite Forums
Favorite Tags
c x 6
java x 1

5 Posted Topics

Member Avatar for aasi007onfire

Hi, Before go to perform the statement execution you should fix these two concepts In your mind 1. Normally both increment and decrement operation’s performed in two ways. Pre- increment/post-increment and pre-decrement/post-decrement. If you declare the variable I =5 then if you want to perform I++ operation in C first …

Member Avatar for deceptikon
0
277
Member Avatar for harshchandra
Member Avatar for Nick Evan
0
427
Member Avatar for Firestone

hi this is the program without using any string builtin function...... [code] /* C program without using string functions*/ #include<stdio.h> #include<conio.h> void main() { clrscr(); char str1[20],str2[20],c; int i,j,count=0,k; printf("Enter the String"); i=0; while((c=getchar())!='\n') { str1[i]=c; i++; count++; } str1[i]='\0'; j=0; for(i=count-1;i>=0;i--) { str2[j]=str1[i]; j++; } str2[j]='\0'; printf("string1 = %s\nstring2 …

Member Avatar for Firestone
0
152
Member Avatar for aasi007onfire

\a,\b,\f,\n,\r,\t,\v,',\",\?,\\,\0.... these are some of escape sequences..........

Member Avatar for TkTkorrovi
0
104
Member Avatar for arunprashanth

Hi, I think this problem was related to memory space.There is not enough space for running your program.Create extra space in your system or delete Garbage values,then you run your program it will be automaticaly run in your system. Try it?!!!!!

Member Avatar for ranjani
0
90

The End.