What is a protocol 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,
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
Explain b+ tree?
What are the types of pointers in c?
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
What is a nested loop?
Why functions are used in c?
can please someone teach me how to create this program using while statement.. this is the output should look like 0 2 4 6 8 10 -thanks.. :) need it asap...
What is meant by int main ()?
wht is the difference between KPO and BPO ?
2 Answers Accenture, BPO, HCK, HCL, Infosys,
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }