Explain what is the difference between a string and an array?
No Answer is Posted For this Question
Be the First to Post Answer
How are variables declared in c?
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
explain how do you use macro?
Is the following code legal? struct a { int x; struct a b; }
What is variable in c example?
void main() { int a=1; while(a++<=1) while(a++<=2); }
write a program to display the array elements in reverse order in c language
How can I direct output to the printer?
What is calloc()?
What is Bitwise Operator and how it works?
Why ordinary variable store only one value
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }