how can u print a message without using any library function
in c
Answer / sreekanth
void main()
{
clrscr();
printf("Hello World");
getch();
}
| Is This Answer Correct ? | 5 Yes | 24 No |
What is a Deque?
Do string constants represent numerical values?
How would you find a cycle in a linked list?
Explain the Difference between the New and Malloc keyword.
Differentiate between Macro and ordinary definition.
How can variables be characterized?
What is a protocol in c?
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
write a program to find the given number is prime or not
2 Answers Accenture, Vasutech,
what does ‘Bus Error’ mean?
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
What is && in c programming?