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
What is assert and when would I use it?
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
What is c programming structure?
can we write a program in c for printf and scanf without using header file stdio.h
What are c preprocessors?
Explain what are linked list?
Can you please explain the difference between strcpy() and memcpy() function?
What is calloc malloc realloc in c?
How to explain the final year project as a fresher please answer with sample project
What are pointers? What are different types of pointers?
design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
WHAT IS INT?