write a sorting prgm to sort 50 nos and sum them and also
remove all the occurrences of 15 and print it?
No Answer is Posted For this Question
Be the First to Post Answer
How to write the code of the program to swap two numbers with in one statement?
Explain Function Pointer?
What is difference between function overloading and operator overloading?
What is c language and why we use it?
Why is c known as a mother language?
what is Structural oriented language? give some example of this language.....?
When should a type cast be used?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input
Differentiate between calloc and malloc.
How do you write a program which produces its own source code as output?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?