What will be the outcome of the following conditional statement if the value of variable s is 10?
No Answer is Posted For this Question
Be the First to Post Answer
Why is c called "mother" language?
Explain what is the use of a semicolon (;) at the end of every program statement?
difference between semaphores and mutex?
which types of data structure will i use to convert infix to post fix???
What is spark map function?
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
How can I read in an object file and jump to locations in it?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
What is the size of structure pointer in c?
WHAT IS HEADER?
Why do we use static in c?
How many ways are there to swap two numbers without using temporary variable? Give the each logic.