Write a factorial program using C.
out put of printf(“%d”,printf(ram));
What is the difference between declaring a variable and defining a variable?
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
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.
0 Answers Lovely Professional University,
convert 0.9375 to binary
Tell me is null always defined as 0(zero)?
What are types of preprocessor in c?
Explain the process of converting a Tree into a Binary Tree.
Do string constants represent numerical values?
How are pointers declared in c?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
program for reversing a selected line word by word when multiple lines are given without using strrev