how can i print "hello".please consider inverted commas as
well.i want to print on console: "hello"
Answer Posted / anveshbanti
#include<stdio.h>
void main ()
{
printf(""hello"");
}
| Is This Answer Correct ? | 4 Yes | 31 No |
Post New Answer View All Answers
Why do we need functions in c?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Explain what are bus errors, memory faults, and core dumps?
What are the differences between new and malloc in C?
What is the collection of communication lines and routers called?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What is the use of #define preprocessor in c?
Why we use int main and void main?
When c language was developed?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
What is meant by 'bit masking'?
what is the height of tree if leaf node is at level 3. please explain
What are the 4 types of organizational structures?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.