how many header file is in C language ?
College School Exams Tests, CTS, IBM, IMS, Infosys, ME, Sign Solutions, Wipro, XVT,
44 79704How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
2 9837Suppose 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 3579There 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 27184Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
5 9582
What are linked lists in c?
What is structure packing in c?
Which is best book for data structures in c?
What does malloc () calloc () realloc () free () do?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is maximum size of array in c?
What is the use of getchar() function?
What is function and its example?
C program to find all possible outcomes of a dice?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Is int a keyword in c?
how to introdu5ce my self in serco
Explain how do you override a defined macro?