what will be the output for the following
main()
{
printf("hi" "hello");
}
Answer Posted / prabu
The output will be
hi hello
| Is This Answer Correct ? | 1 Yes | 8 No |
Post New Answer View All Answers
Write a program to print “hello world” without using semicolon?
#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); }
Add Two Numbers Without Using the Addition Operator
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
Explain what is the difference between far and near ?
Explain what is a const pointer?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Is c is a low level language?
What is the best way of making my program efficient?
What is context in c?
Write a program to use switch statement.
How many levels of pointers can you have?
Why c language is called c?
How do I convert a string to all upper or lower case?
program for reversing a selected line word by word when multiple lines are given without using strrev