what will be the output for the following
main()
{
printf("hi" "hello");
}
Answer Posted / manoj
it raises an error
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
Mention four important string handling functions in c languages .
Do you know null pointer?
Can a pointer be volatile in c?
What is strcmp in c?
Explain what are preprocessor directives?
Can a pointer be null?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Explain the difference between call by value and call by reference in c language?
Can you pass an entire structure to functions?
What Is The Difference Between Null And Void Pointer?
What is the difference between variable declaration and variable definition in c?
Why c is a procedural language?
Why c language is called c?
What is difference between class and structure?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?