Explain the difference between getch() and getche() in c?
What is the use of a semicolon (;) at the end of every program statement?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
what are the files which are automatically opened when a c file is executed?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
What are the uses of null pointers?
What is the deal on sprintf_s return value?
How can I read/write structures from/to data files?
What are the advantages and disadvantages of c language?
What is 02d in c?
why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?
Write a program to find factorial of a number using recursive function.