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 does %2f mean in c?
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
what are brk, sbrk?
what is the difference b/w NULL and null?
Which is the memory area not included in C program? give the reason
How can you draw circles in C?
Write a program to swap two numbers without using third variable in c?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file
Can we declare function inside main?
Explain the bubble sort algorithm.