in C-programming language without using printf statement
can we get output r not ? if yes how and if no also how ?
Answer Posted / bhupendra dhire
/*this program is without printf() and without (;) using far pointer and functions */
int display(char *ch)
{
char far *p;
int i;
static int c=0;
p=(char far *)0xb8000000l;
for(i=0;ch[i]!='\0';i++,c=c+2)
p[c]=ch[i];
}
void main()
{
if(display("BHUPENDRA DHIRE ")){}
}
| Is This Answer Correct ? | 21 Yes | 11 No |
Post New Answer View All Answers
Explain the binary height balanced tree?
What are the properties of union in c?
What are the types of data structures in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Do you know what are bitwise shift operators in c programming?
Can we declare function inside main?
i got 75% in all semester am i eligible for your company
Calculate 1*2*3*____*n using recursive function??
Which function in C can be used to append a string to another string?
What is the acronym for ansi?
Is null always equal to 0(zero)?
What is scanf_s in c?
Is fortran still used today?
What does it mean when the linker says that _end is undefined?
What is function in c with example?