Write a C program in Fibonacci series.
why ordinary variable store the later value not the initial
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
Can we change the value of #define in c?
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
Can a void pointer point to a function?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
What are the advantages of using linked list for tree construction?
Find string palindrome 10marks
5 Answers Honeywell, Infosys, Riktam, Roland,
Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
What tq means in chat?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above