What is #define in c?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
string reverse using recursion
How can a program be made to print the name of a source file where an error occurs?
Can a variable be both const and volatile?
Explain the meaning of keyword 'extern' in a function declaration.
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
What is the difference between ++a and a++?
We can draw a box in cprogram by using only one printf();& without using graphic.h header file?
What are the similarities between c and c++?
what is recursion in C
Write a c program to demonstrate Type casting in c?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same