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 |
how is the examination pattern?
What is structure padding & expalain wid example what is bit wise structure?
What is a lookup table in c?
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
What is the advantage of using #define to declare a constant?
0 Answers Agilent, ZS Associates,
how to find the largest element of array without using relational operater?
Explain the use of fflush() function?
write a program to print largest number of each row of a 2D array
which one is highest Priority in c? a)=,b)+,c)++,d)==
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
i want to have a program to read a string and print the frequency of each character and it should work in turbo c
Can you assign a different address to an array tag?