Replies
Welcome, guest
Join CrazyEngineers to reply, ask questions, and participate in conversations.
CrazyEngineers powered by Jatra Community Platform
-
@deepu11111111-Vg940z • Apr 8, 2012
In Array , if you declare an array as
int a[5]={1,2,3,4,5);and then if you want to print the address of any element in the array , you have to declare the pointer .
But we can get the first elements address directly
printf("%u",a);We know that the array is a continues memory allocation structure so that we can find all addresses of array elements without using pointers -
@deepu11111111-Vg940z • Apr 8, 2012
You have to feel free to express your words , if they are any mistakes or clarifications in any post in this thread in order to make this thread more useful -
@kr-at-nsngu-XqzcfU • Apr 8, 2012
HI #-Link-Snipped-# !
Nice thread !
The Closing Bracket you mentioned wrongly !deepu11111111int a[5]={1,2,3,4,5);
It should be :
int a[5]={1,2,3,4,5};Am i correct ? -
@deepu11111111-Vg940z • Apr 8, 2012
You are right #-Link-Snipped-# -
@kr-at-nsngu-XqzcfU • Apr 8, 2012
It is been one year i left my practice in programming, yet i will try to post tricks of Java here 😀 ! -
@deepu11111111-Vg940z • Apr 9, 2012
You are most welcome #-Link-Snipped-#K!r@nS!nguIt is been one year i left my practice in programming, yet i will try to post tricks of Java here 😀 !
That's very useful -
@deepu11111111-Vg940z • Apr 12, 2012
Post more tricks and special things of java,c++,c for expending our knowledge guys 👍 -
@nareshkumar6539-BKuVbx • Apr 13, 2012
Swap two variables without using third variable code will be like below
a=a+b;
b=a-b;
a=a-b;
the same thing we can do in a single like below.
a=(a+b)-(b=a); -
@nareshkumar6539-BKuVbx • Apr 13, 2012
In c if you want to print something on console without using semicolon then write printf statement
inside if as condition like below.
if(printf(" Crazy Computer Science Engineers"))