What is the function of multilevel pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
what's the return value of malloc()
What is struct node in c?
what is the program to display your name in any color?
tell me the full form of c?
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision
write a program to find out prime number using sieve case?
provide an example of the Group by clause, when would you use this clause
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
Explain union.
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }