Ideas Room

                      Here we can start our discussion on any topics related to academic track....

Discussion

jobrequirement

Date: 16/08/2012 | By: hema

Its very good thought. I appreciate you for giving this opportunity for users participate <a

href="https://aptitudetest9.com/">jobrequirement</a>, well done..very nice idea...
Thank you,
Regards,
Hema<a href="https://aptitudetest9.com/">aptitudetest</a>

c

Date: 30/08/2011 | By: sarab

all efforts are good

NULL Pointer

Date: 22/08/2010 | By: Gunasekaran

A pointer has to point a memory address. Its a must that we all know!
So, Where does a NULL pointer point to, in the memory?

Pointer Incrementation/Decrementation...Possible?

Date: 09/12/2009 | By: Gunasekaran

What is the output of the following snippet?

void PointerIncrementationDecrementation()
{
char *ptr="CSITA";
printf("\n%s",ptr);
ptr++;
printf("\n%s",ptr);
ptr--;
printf("\n%s",ptr);
}

Re: Pointer Incrementation/Decrementation...Possible?

Date: 17/03/2010 | By: Pradeep

CSITA
SITA
CSITA

Re: Re: Pointer Incrementation/Decrementation...Possible?

Date: 07/05/2010 | By: Gunasekaran

Right machi!
Go on posting ur Q/A's too

Is it the essence of if-else 'r printf() ?

Date: 03/12/2009 | By: Gunasekaran

Write a C program to execute the "printf" statement in both if and else part.One has to use both if and else...
Eg.For the snippet of this kind:
if(cond)
//statement;
else
//statement;
printf() used in both if 'n else part should execute....Condition & statements can be anything....

Re: Is it the essence of if-else 'r printf() ?

Date: 18/02/2010 | By: Ganesh Babu

if(any cond)
{
your true statement;
.
.
.
Goto X;
}
else
{
X:
your else statements;
}

Now both will execute i think so,...

Re: Re: Is it the essence of if-else 'r printf() ?

Date: 18/02/2010 | By: Gunasekaran

Yup!!! You're right Sir!!!

New comment