Why C language is a procedural language?
What are directives in c?
Where are local variables stored in c?
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
Which header file should you include if you are to develop a function which can accept variable number of arguments?
pascal triangle program
How do you define structure?
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }
What is clrscr ()?
What is the use of structure padding in c?
What is static function in c?