print ur name 20,000 times without using inbuilt library
functions like printf,scanf,gets,puts,getchar or putchar
Answer Posted / dasari chaithanya
#include<stdio.h>
#include<conio.h>
void main()
{
char ch[20];
for(ch=0;ch<=20000;ch++)
if( printf("chaithanya"));
else if("data is wrong");
}
| Is This Answer Correct ? | 0 Yes | 42 No |
Post New Answer View All Answers
Tell me when is a void pointer used?
What is time null in c?
What is a structure member in c?
What is the modulus operator?
What is #pragma statements?
regarding pointers concept
What are header files and what are its uses in C programming?
Which is better between malloc and calloc?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Why malloc is faster than calloc?
Why do we use static in c?
Which are low level languages?
What is d'n in c?
Write a program to identify if a given binary tree is balanced or not.
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?