Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 29611Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
1 16099main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
CSC,
6 11576plssssss help !!....using array.. turbo c..
create a program that will accept number of words to be
consored.
.a word must not exceed 10 characters long
.the text to be entered will be no longer than 200 characters
.there will be no 10 words
example:
enter number of words to be censor: 5
enter words to censor:
windows
office
microsoft
bill
gates
enter text to censor:
bill gates founded microsoft and makes office and windows
sample output:
number 2 plssssss help !!....using array.. turbo c.. create a program that will accept a number and determine if it is a happy number or an unhappy number.. example: enter a number : 7 7*7=49 then 4 and 9 4*4 and 9*9== 16 + 18 gives you 97 then 9 and 7 9*9 and 7*7 == 81 + 49 gives you 130 then 1 and 3 1*1 and 3*3 == 1 + 9 gives you 10 1*1 gives you 1 sample output: 7= 49= 16+81= 97= 81+49=130 =1+9=10 =1 "7 is a happy number" . if the last number is 2 then the number being inputed is not a happy number.
3 7359plz answer..... a program that reads non-negative integer and computes and prints its factorial
2 5816plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .
3 8346plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
1 3781
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
Is it possible to pass an entire structure to functions?
Explain what is the advantage of a random access file?
What are the uses of a pointer?
Explain what is wrong in this statement?
How can I read/write structures from/to data files?
How do you define a function?
What is the best style for code layout in c?
How can I convert a number to a string?
What is declaration and definition in c?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
please send me the code for multiplying sparse matrix using c
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
write a c program in such a way that if we enter the today date the output should be next day's date.