What is binary tree in c?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
What’s the special use of UNIONS?
Explain what is a 'locale'?
Once I have used freopen, how can I get the original stdout (or stdin) back?
in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?
how can write all 1to 100 prime numbers using for loop,if and break ?
What are local static variables?
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
What is a const pointer, and how does it differ from a pointer to a const?
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
What is a macro, and explain how do you use it?
how can you print&scan anything using just one character? :) HINT: printf,scanf similer