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
#include
What are register variables in c?
Is array name a pointer?
explain what is a newline escape sequence?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What is pass by value in c?
How to write a code for reverse of string without using string functions?
What does %d do?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
What is wrong with this declaration?
What are 'near' and 'far' pointers?
int i=10; printf("%d %d %d", i, i=20, i);
Give differences between - new and malloc() , delete and free() ?
Why are algorithms important in c program?