When should structures be passed by values or by references?
No Answer is Posted For this Question
Be the First to Post Answer
how to print this pyramid * * * * * * * * * * * * *
please give me some tips for the selection in TCS.
Is c still relevant?
Explain the use of function toupper() with and example code?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What are types of structure?
What is c preprocessor mean?
Why doesnt the call scanf work?
Why is c so popular?
If null and 0 are equivalent as null pointer constants, which should I use?
What is c variable?
What is the method to save data in stack data structure type?