Explain what is a static function?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?
What is cohesion and coupling in c?
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
What is the exact difference between '\0' and ""
When should the volatile modifier be used?
what defference between c and c++ ?
What is the use of getch ()?
Describe wild pointers in c?
What is the difference between procedural and functional programming?