What is the difference between arrays and pointers?
No Answer is Posted For this Question
Be the First to Post Answer
What is the process to generate random numbers in c programming language?
Why c++ is called c++ and not c+?
how can u print a message without using any library function in c
What is difference between array and structure in c?
why we shiuld use main keyword in C
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
What is the size of enum in c?
Is it better to use malloc() or calloc()?
How many identifiers are there in c?
What are the two forms of #include directive?
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); }
c program to add and delete an element from circular queue using array