why to assign a pointer to null sometimes??how can a pointer
we declare get assigned with a garbage value by default???
What are the applications of c language?
Explain the priority queues?
Why should I prototype a function?
What are header files? What are their uses?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
Explain how can you determine the size of an allocated portion of memory?
How can I remove the trailing spaces from a string?
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
count the numbers between 100 and 300, that star with 2 and ends with 2
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
If the static variable is declared as global, will it be same as extern?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?