What is #define size in c?
Explain what is the benefit of using #define to declare a constant?
What are the types of functions in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
how to use enum datatype?Please explain me?
Write a C program in Fibonacci series.
write a c program to find largest of three numbers using simple if only for one time.
What is meaning of tree
what is d pitfalls of registers variables
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
What is call by reference in functions?
Find greatest of two numbers using macro