- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
5 Posted Topics
Re: 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 … | |
Re: #include<stdio.h> void main() { if(printf("hai")) { } } | |
Re: 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 … | |
Re: \a,\b,\f,\n,\r,\t,\v,',\",\?,\\,\0.... these are some of escape sequences.......... | |
Re: 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?!!!!! |
The End.