What is the difference between array_name and &array_name?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?
Explain what is meant by high-order and low-order bytes?
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
What is wrong with this initialization?
Is it possible to pass an entire structure to functions?
Do you know the purpose of 'register' keyword?
What is far pointer in c?
main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); }
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop