Explain the priority queues?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different types of pointers?
what is the syallabus of computer science students in group- 1?
What is a program?
What are the advantages of the functions?
What are the key features of C?
what are far pointers?
#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?
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
Write a C program to find the smallest of three integers, without using any of the comparision operators.
What are the types of functions in c?
program to locate string with in a string with using strstr function
Disadvantages of C language.