main()
{
int x=5,y=10,z=0;
x=x++ + y++;
y=y++ + ++x;
z=x++ + ++y;
printf("%d%d%d\n",x,y,z);
}
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
What does c mean in basketball?
what does ‘segmentation violation’ mean?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is the use of static variable in c?
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
What is C language Terminator?
cavium networks written test pattern ..
How can I determine whether a machines byte order is big-endian or little-endian?
The difference between printf and fprintf is ?
How would you print out the data in a binary tree, level by level, starting at the top?
difference between Low, Middle, High Level languages in c ?