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 are the back slash character constants or escape sequence charactersavailable in c?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
What is calloc() function?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
How we can set and clear bit in a byte using macro function?
Explain what is the benefit of using an enum rather than a #define constant?
How can I pad a string to a known length?
What are the preprocessor categories?
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
What is the purpose of void pointer?
What header files do I need in order to define the standard library functions I use?