Write a program to check prime number in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
What is the symbol indicated the c-preprocessor?
What is identifiers in c with examples?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
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?
What is difference between stdio h and conio h?
how to find anagram without using string functions using only loops in c programming
Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered
What is non linear data structure in c?
Derive the complexity expression for AVL tree?
What is a buffer in c?
Can we change the value of constant variable in c?
How can a program be made to print the line number where an error occurs?