Describe dynamic data structure in c programming language?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between the expression “++a” and “a++”?
i want to have a program to read a string and print the frequency of each character and it should work in turbo c
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
Explain how do you determine whether to use a stream function or a low-level function?
How is = symbol different from == symbol in c programming?
Is it possible to create recycle bin in mobiles?
sir, i cannot find the way how to write aprogram by using array on queue
what are the different storage classes in c?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Write a C program that reads a series of strings and prints only those ending in "ed"
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }