Monday, September 21, 2009

MCA@Ideas: Session is on Fire

MCA@Ideas- Saturday Classes


Knowledge and brains will rock very soon.
On this coming-up Saturday we MCA@Idea community members are planning to conduct ORACLE9i- Session.
The session is targeted to cover the vital and essential DBMS concepts e.g. PL-SQL, Sessions,Triggers, Report Generation, Stored Procedures, Functions, Native API's...and lots more. The almost target and the agenda will be to cover the Oracle9i- The Complete Reference.

Session is going to be conducted by MCA 2008-2011batch. Speakers are:-
1. Abhishek Katariya
2. Ajit
3. Kailash Patel
4. Pradeep
5. Mahendra Verma

Thursday, September 17, 2009

Grab: Rare book on ARENA-IDE, for Simulation.

http://rapidshare.com/files/154742088/Simulation_with_Arena_by_Kelton.rar

Grab....Arena 7- Crack.

http://rapidshare.com/files/55111511/Rockwell_Arena_7_0_Crack.zip

....from college, may it cease some downlaoding problem.
So recommends to download anywhere except from college-systems.

...Try to resolve the code & its output.

#include

main()

{

int a,b,c;

int count = 1;

for (b=c=10;a=

"- LLLLLL?, LMKC,XYZHELLO FOLKS,\

TFy!QJu ROo TNn(ROo)SLq SLq ULo+\

UHs UJq TNn*RPn/QPbEWS_JSWQAIJO^\

NBELPeHBFHT}TnALVlBLOFAkHFOuFETp\

HCStHAUFAgcEAelclcn^r^r\\tZvYxXy\

T
S~Pn SPm SOn TNn ULo0ULo#ULo-W\

Hq!WFs XDt!" [b+++21]; )



for(; a-- > 64 ; )

putchar ( ++c=='Z' ? c = c/ 9:33^b&1);



}





........can anybody tell, whats the logic behind this magical-output...?

Monday, September 7, 2009

Create New drive of your own....

Go to c drive

Create a new folder ( say samp1 )

now go to command prompt and type

subst z: c:\samp1

now go to my computer and check it..........




to remove the drive

go to command prompt and type

subst z: /d



......hozzz that..?

Create Folder without name

1) Right Click
2) New
3) Folder
4) Then Holding "Alt" Key Press 0160 Then Press "Enter" Key







....this was not the purpose to create this blog, but to grab your people interaction & involvement, I am going just a little wrong side.....coz I know these kinds of Crazy-stuffs bring you to this blog.

Something abt printf....!

#include

int main()
{
     char q[]="%c\n";
     q[1] = 'c';
     printf (q,98);
}


...guys, again a new fundu abt printf.....tell the logic how-n-why printf behaving so...?

I request you all visitors t atleast try to give your opinion, and if more better you can do....than try to comment/compliment on the other people comments, its a blog meant for discussion...plz be a part of it.......coz your very-presence matters a lot to all of us. Plz tell your opinions that if you were given the same problems, than how you approach to solve these crazy-stuffs.

Saturday, September 5, 2009

Lvalue required....?

#include

int main()
{

   enum{i=10,j=20,k=50};
   printf("%d\n",++k);
 
   return 0; 
}


...guys what is the output, and give your opinion why it is so...? What exactly is the concept of Lvalue...and in what circumstances it happens so...? Leave as far as possible examples in your comments.

Friday, September 4, 2009

Scanf I/O Mgmt

#include
int main()
{
   char ch;
   int i;
   printf ("Enter any number: ");
   scanf ("%d",&i);
   printf ("Enter any character:... ");
   scanf ("%c",&ch);
   printf ("\n%d %c",i,ch);
   
   return 0;
}
Guys, tell me why in the output it is not reading the character properly, or tell me how to make possibleto read the second scanf statement. Leave explanation also why it is behaving so...?

Tuesday, September 1, 2009

Grab: Test your skill in C

Guys get a copy of Test your skills in C- Yeshwant
Kantekar at

http://rapidshare.com/files/168062061/Test_Your_C_Skills_-Yashwant_Kanetkar.rar

About Pointer Address

Hi to all,
Welcome to all of you.

First problem-
#include
int main()
{
int arr[2][3][4];
printf ("%u..%u..%u..%u", arr,&arr,arr+1,&arr+1);
return 0;
}
......the question is what is the output, and whats the logic behind that output.