Why c is a mother language?
No Answer is Posted For this Question
Be the First to Post Answer
What are the scope of static variables?
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
How was c created?
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
What does it mean when a pointer is used in an if statement?
What is the difference between text files and binary files?
What are operators in c?
what is the return type of printf
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
If the static variable is declared as global, will it be same as extern?