Hi Gururaj Regarding your first program: int (*p)[MAXCOL] - declares that : p is a pointer to an array of size /dimension MAXCOL which is (array) integer type....
Hi Gajanan Plz follow the following steps: 1. Go to the any editor. 2. Go to the VI editor using: vi filename.c 3. Open the <INSERT> mode using: a. Press...
 Hi all, I wanted to know how the printf("%d",&x); works. Please clarify me. Hi all, I wanted to know how the printf("%d",&x); works. Please clarify me....
hai, i have one doubt in C _ANSI_ARGS_ i have noidea abt ANSI_ARGS_, but function we r using like void funname _ANSI_ARGS_((chat *text)); any bodies know that...
sir i am a fresher to this grp i am doing may MCA i have a problem in C language. i am using Borland C compiler int i; and int i=10; whats the diff b/w the...
Parveen Chawla
mrpchawla@...
Dec 1, 2004 9:42 am
4120
hey u can do following instread of "./FirstProg <Arg1> " use string with u can create be appending argument to /FirstProg and pass this string to system ...
... Hi, Since the small, medium, large or huge memory models are specific to MSDOS and 8088/8086 processor, you may also refer to some books on MSDOS ...
Hii Sudha I dont know whether u have beginers / Intermediate / Professional C skills though i am going to answer ur question. enum is a very handy tools in C...
I am silent member to this group. Presently i am working with C++ platform. can u tell me how to connect oracle database with C++... Please help me...
guggilam upendra
upendra1978@...
Dec 1, 2004 7:20 pm
4128
class Fred; class FredBase { private: friend class Fred; FredBase() { } }; class Fred : private virtual FredBase { public: ... }; Hi all, I didn't understand...
Hi Friends, I have the foll. queries: This is with respect to C-Programming on Linux platform. (a) Suppose, I store some important information in a file, can...
Hi I am new to this group. I would like to know the differences between the various memory models in c. I understand that there are there different types -...
hi, thanks for replying. for GUI application i think VB is preferred, is VC++ also used? But what about non-GUI applications. are there any non-GUI apps which...
hey, someone sent answer like this. I think it is wrong. p is an array of 10 pointers regards the answer is p is a pointer to an array of 10 integers can any...
syamala
shyamala.vurubandi@...
Dec 1, 2004 7:39 pm
4133
Hii Ravi First of all this program will give an error because op2:22 is too large for bit fields. Change that accordingly. Suppose #include<stdio.h> int main()...
its 3. p is a pointer to a 10 element array of pointers to integers because [ ] has a higher priority. bye ankush. vidya sakhare <ss_vids82@...> wrote:...
main() { int i=5; printf("%d%d%d%d%d",i++,i--,++i,--i,i); } what is the o/p and why? Hello friend I believe the output will be different on various compilers....
Hi, Can anyone tell me how many bytes are assigned to the below structure? & How to calculate the bytes assigned manually . Note : sizeof(int) = 4 bytes...
... Programming in C/C++ gives you a lot of insight into how things work. Without knowing how messages are being thrown around you'd probably do a lot of fatal...
... The file resides on a Filesystem. It cannot be addressed using memory addresses. Read some text on file handling in C. File handling using C is the same...