Explain what is the difference between functions getch() and getche()?
No Answer is Posted For this Question
Be the First to Post Answer
What is a pointer value and address in c?
Difference between malloc() and calloc() function?
What are the concepts introduced in OOPs?
What are the advantages of external class?
Explain what is a 'locale'?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
write a c program to store and print name,address,roll.no of a student using structures?
Why is C language being considered a middle level language?
Explain what is a stream?
Which is best book for data structures in c?