What is the difference between typedef struct and struct?
Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }
write a c program to print the values in words eg:- 143 written it has (one hundred and forty three)& 104, 114 are also written words
5 Answers Captronic, DELL, Google, IBM, Mithi, RCC, Wipro,
write a program to fined second smallest and largest element in a given series of elements (without sorting)
What are c identifiers?
What do you mean by command line argument?
How to removing white spces in c programming only bu using loops
What is the heap in c?
what is the use of a array in c
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
What are valid operations on pointers?
What is a C array and illustrate the how is it different from a list.