How are Structure passing and returning implemented by the complier?
No Answer is Posted For this Question
Be the First to Post Answer
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
write a program to gat the digt sum of a number (et. 15= >1+5=6)
Write a program of advanced Fibonacci series.
When was c language developed?
What is the use of sizeof?
Is swift based on c?
WHAT IS PRE POSSESSORS?
What is the difference between printf and scanf )?
How will you allocate memory to double a pointer?
Write a program to print "hello world" without using a semicolon?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
Which of these functions is safer to use : fgets(), gets()? Why?