how many header file is in C language ?
College School Exams Tests, CTS, IBM, IMS, Infosys, ME, Sign Solutions, Wipro, XVT,
44 80936How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
2 9952Suppose 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 3652There 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 27583Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
5 9745
What is meant by type casting?
How can I read a binary data file properly?
Does c have function or method?
Explain the difference between strcpy() and memcpy() function?
What is the use of sizeof?
What is the difference between int main and void main in c?
How can you determine the size of an allocated portion of memory?
How can you increase the size of a statically allocated array?
What is the function of this pointer?
Why is c not oop?
Can i use “int” data type to store the value 32768? Why?
What are shell structures used for?
What is call by reference in functions?
What is use of pointer?
Why do we use int main?