difference between memcpy and strcpy
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
Binary tree traversing
What does the format %10.2 mean when included in a printf statement?
Array is an lvalue or not?
What is the difference between malloc calloc and realloc in c?
What are the parts of c program?
What do you mean by Recursion Function?
Are there namespaces in c?
write a program for size of a data type without using sizeof() operator?
22 Answers HCL, IBM,
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
write a addition of two no. program with out using printf,scanf,puts .
How can draw a box in cprogram without using graphics.h header file & using only one printf(); ?