What is multidimensional arrays
No Answer is Posted For this Question
Be the First to Post Answer
What is the process of writing the null pointer?
Differentiate between Macro and ordinary definition.
what is self refrential structure
Which is better pointer or array?
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
What is modifier & how many types of modifiers available in c?
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
What is the most efficient way to count the number of bits which are set in an integer?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
write a 'c' program to sum the number of integer values
can we write a program in c for printf and scanf without using header file stdio.h
Why enum is used in c?