can a union be self-referenced?
What should malloc() do?
What is a C array and illustrate the how is it different from a list.
what is constant pointer?
Write a program that his output 1 12 123
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
How variables are declared in c?
How will you divide two numbers in a MACRO?
What do you mean by scope of a variable in c?
Write a program of advanced Fibonacci series.
What is use of pointer?
how to find sum of 5 digits in C?
Explain how do you use a pointer to a function?