how can i print "hello"
Answers were Sorted based on User's Feedback
#include<stdio.h>
main()
{
printf("hello");
}
| Is This Answer Correct ? | 7 Yes | 4 No |
Answer / ajithbalaji
Both r wrong
#include<stdio.h>
#include<conio.h>
void main()
{
printf("\"hello\"");
getch();
}
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / vijay kumar tiwari
#include<iostream.h>
main()
{
cout<<"hello";
}
| Is This Answer Correct ? | 3 Yes | 4 No |
Why is main function so important?
Write a program in c to input a 5 digit number and print it in words.
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
How to define structures? ·
Explain what is gets() function?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
What is the Difference between Macro and ordinary definition?
3 Answers Bosch, Cognizant, College School Exams Tests, Motorola,
What is data type long in c?
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
wat s the meaning of (int *)p +4;
Describe the steps to insert data into a singly linked list.