Write a program of advanced Fibonacci series.
Explain what is a 'locale'?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
every function has return the value?
how to add numbers without using arithmetic operators.
what is a constant pointer in C
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
what is used instead of pointers in java than c?
What is the most efficient way to count the number of bits which are set in a value?
Write a C program to convert an integer into a binary string?
What is the value of uninitialized variable in c?
What are the 4 types of unions?