Which is better between malloc and calloc?
How many main () function we can have in a project?
how can write all 1to 100 prime numbers using for loop,if and break ?
how to add two numbers without using arithmetic operators?
what are the various memory handling mechanisms in C ?
Write a program to swap two numbers without using third variable in c?
How does memset() work in C?
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
What do you mean by c?
Why do we use header files in c?
what is a headerfile?and what will be a program without it explain nan example?
What do you mean by a sequential access file?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }