Forum: C Dec 12th, 2008 |
| Replies: 5 Views: 793 It's above the Enter key on your keyboard with '\' symbol..................... |
Forum: C Nov 20th, 2008 |
| Replies: 6 Views: 698 since you declare x as an integer so system allocate 2 byte for this variable & when u give input as character it converts into an integer through ASCII value & print that one............. |
Forum: C Nov 18th, 2008 |
| Replies: 6 Views: 622 #include<stdio.h>
#include<string.h>
#define size 25
void main()
{
char strsrc[size];
char strtmp[size];
clrscr(); |
Forum: C Aug 13th, 2008 |
| Replies: 6 Views: 639 2) This is an L-value error that u have to put a reference that have a legal address at the left side of assignment operator at the equal sign.......... |
Forum: C Aug 13th, 2008 |
| Replies: 6 Views: 827 u can see ur result by pressing ctrl+f5 or u can see ur result by adding a simple "getch();"
in ur code........................... |