|
Related Questions |
View Answer |
|
1. what is a difference between printf and cout . and why printf called a function and cout object as both are used to print data?
|
View Answer
|
|
How to print a statement without using printf() in c?
|
View Answer
|
|
Write a Program to convert decimal to binary no.
|
View Answer
|
|
What is the output of void main() { int a = (1,2,3); printf("%d",a); }
with reason.
|
}
- Functions in C Interview Questions & Answers">
View Answer
|
|
code To draw a three dimensional graph using c graphics
|
View Answer
|
|
What is meant by malloc function
|
View Answer
|
|
How do we get Square root of any number Without using sqrt() function?
|
View Answer
|
|
What are returned by printf(), scanf() functions,if they return anything means what are that?
|
View Answer
|
|
Have you heard of "mutable" keyword?
|
- Functions in C Interview Questions & Answers">
View Answer
|
|
What is the purpose of main( ) function?
|
View Answer
|
|
Is using exit() the same as using return?
|
View Answer
|
|
Is it possible to execute code even after the program exits the main() function?
|
View Answer
|
|
What is a static function?
|
View Answer
|
|
Difference between Funtion to pointer and pointer to function
|
View Answer
|
|
How can send unlimited no of arguments to a function, eg printf function can take any no of arguments
|
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
|