What is null pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
write a program in c language to print your bio-data on the screen by using functions.
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
Find occurence of a character in a sting.
Give differences between - new and malloc() , delete and free() ?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Why structure is used in c?
What is meant by preprocessor in c?
What is Memory leakage ?