Answer Posted / nakul sharma
Storage class in C language defines the memory type in which any variable is going to be stored in C program.
| Is This Answer Correct ? | 5 Yes | 8 No |
Post New Answer View All Answers
How to write c functions that modify head pointer of a linked list?
How do you construct an increment statement or decrement statement in C?
What are unions in c?
What is the use of a ‘ ’ character?
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!+....
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
how can use subset in c program and give more example
Explain data types & how many data types supported by c?
What is default value of global variable in c?
What is structure padding and packing in c?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is the significance of scope resolution operator?
Explain how do you view the path?
How does free() know explain how much memory to release?
Explain built-in function?