Can you write the algorithm for Queue?
No Answer is Posted For this Question
Be the First to Post Answer
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
what is unsigened char and what is the difference from char
what is a function method?give example?
how to set Nth bit of a variable?
What are the types of variables in c?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
Sir i need notes for structure,functions,pointers in c language can you help me please
write a program in c language for the multiplication of two matrices using pointers?
Write a program that accept anumber in words
What is use of null pointer in c?
What is the purpose of clrscr () printf () and getch ()?
How can I insert or delete a line (or record) in the middle of a file?