What is the difference between fread and fwrite function?
No Answer is Posted For this Question
Be the First to Post Answer
write the program for maximum of the following numbers? 122,198,290,71,143,325,98
When do we get logical errors?
What is the best way to store flag values in a program?
Explain how can you be sure that a program follows the ansi c standard?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
Method Overloading exist in c ?
What is far pointer in c?
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
main() { int a[10]; printf("%d",*a+1-*a+3); }
How can you tell whether two strings are the same?
Why is void main used?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above