how many header file is in C language ?
College School Exams Tests, CTS, IBM, IMS, Infosys, ME, Sign Solutions, Wipro, XVT,
44 79774How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
2 9844Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
1 3581There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 27206Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
5 9594
explain how do you use macro?
What is c variable?
What is the process of writing the null pointer?
Tell me is null always defined as 0(zero)?
What is the data segment that is followed by c?
What is void c?
What is advantage of pointer in c?
How can I get back to the interactive keyboard if stdin is redirected?
Explain c preprocessor?
What is "Hungarian Notation"?
Can you please explain the difference between strcpy() and memcpy() function?
Can an array be an Ivalue?
What is the difference between āgā and āgā in C?
What does a pointer variable always consist of?
Why do we use int main instead of void main in c?