#include<stdio.h>
int main()
{
int x=2,y;
y=++x*x++*++x;
printf("%d",y);
}
Output for this program is 64.
can you explain how this output is come??
What is the subtle error in the following code segment? void fun(int n, int arr[]) { int *p=0; int i=0; while(i++<n) p = &arr[i]; *p = 0; }
main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); }
why java is platform independent?
why array index always strats wuth zero?
#include<stdio.h> main() { register i=5; char j[]= "hello"; printf("%s %d",j,i); }
How do you create a really large matrix (i.e. 3500x3500) in C without having the program crash? I can only reach up to 2500. It must have something to do with lack of memory. Please help!
write a program in c to merge two array
main() { char name[10],s[12]; scanf(" \"%[^\"]\"",s); } How scanf will execute?
write a function to give demostrate the functionality of 3d in 1d. function prototye: change(int value,int indexX,int indexY,int indexZ, int [] 1dArray); value=what is the date; indexX=x-asix indexY=y-axis indexZ=z-axis and 1dArray=in which and where the value is stored??
write a program to count the number the same (letter/character foreg: 's') in a given sentence.
pls anyone can help me to write a code to print the values in words for any value.Example:1034 to print as "one thousand and thirty four only"
can u give me the c codings for converting a string into the hexa decimal form......