How many types of functions are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
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,
What is pivot in c?
What is #include in c?
What is array of structure in c programming?
What do you mean by a sequential access file?
How do you determine if a string is a palindrome?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
write a program that finds the factorial of a number using recursion?
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
void main() { int i=5; printf("%d",i+++++i); }
multiple of 9 without useing +,* oprator
Write a program in c to replace any vowel in a string with z?