Can the sizeof operator be used to tell the size of an array passed to a function?
No Answer is Posted For this Question
Be the First to Post Answer
Can we access the array using a pointer in c language?
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
What is the exact difference between '\0' and ""
Why is it that not all header files are declared in every C program?
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
Can a pointer be null?
how to generate sparse matrix in c
Why clrscr is used after variable declaration?
Do pointers take up memory?
what is a headerfile?and what will be a program without it explain nan example?
What does *p++ do? What does it point to?