|
Related Questions |
View Answer |
 |
We should not read after a write to a file without an intervening call to fflush(), fseek() or rewind()
|
View Answer |
 |
How argc and argv works in the following main function?
main(int argc,char *argv[]) { int n,i=0; while(argv[1][i]!=' |
View Answer |
 |
How to write a program such that it will delete itself after exectution?
|
View Answer |
 |
output of the following program void main() { unsigned i; i=100*400; printf(
|
View Answer |
 |
When function say abc() calls another function say xyz(), what happens in stack?
|
View Answer |
 |
In c , main() is a function . and where is defined main() in c. bcz every function has three parts. 1>. decleration 2>. definition. 3>. calling
|
View Answer |
 |
How to write a C program to find the power of 2 in a normal way and in single step?
|
View Answer |
 |
What is the difference between goto and longjmp() and setjmp()? |
View Answer |
 |
How do you determine whether to use a stream function or a low-level function? |
View Answer |
 |
Is it better to use a macro or a function? |
View Answer |
 |
How do you use a pointer to a function? |
View Answer |
 |
Why should I prototype a function? |
View Answer |
 |
What is a static function? |
View Answer |
 |
Is using exit() the same as using return? |
View Answer |
 |
Differentiate between a linker and linkage? |
View Answer |
 |
What is a function and built-in function? |
View Answer |
 |
What is an argument ? differentiate between formal arguments and actual arguments? |
View Answer |
 |
What is the purpose of main( ) function? |
View Answer |
 |
What are the advantages of the functions? |
View Answer |
 |
What is a method? |
View Answer |