code for quick sort?
No Answer is Posted For this Question
Be the First to Post Answer
two variables are added answer is stored on not for third variable how it is possible?
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
How are 16- and 32-bit numbers stored?
What is the difference between %d and %*d in C
Is javascript based on c?
write a program to display numbers from 1 to 10 and 10 to 1?
Explain what is the concatenation operator?
What are the different properties of variable number of arguments?
What is use of integral promotions in c?