what will be the output for the following
main()
{
printf("hi" "hello");
}
Answers were Sorted based on User's Feedback
Answer / manishsoni
can any one tell me hows the answer is:
hihello
| Is This Answer Correct ? | 2 Yes | 0 No |
write a program in c to print **** * * * * ****
what is the use of ‘auto’ keyword?
What is a c token and types of c tokens?
What’s a signal? Explain what do I use signals for?
write a program to display the array elements in reverse order in c language
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL
c program to input values in a table(using 2D array) and print odd numbers from them
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
What is a shell structure examples?
How do you access command-line arguments?
What are the main characteristics of c language describe the structure of ac program?
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort