i want to switch my career from quailty assurance
engineering to development kindly guide me from which
programming language its better for me to start plz refer
some courses or certifications too
i have an experience of 1.5 yrs in QA field.Kindly guide me
No Answer is Posted For this Question
Be the First to Post Answer
b) 4 c) 6 d) 7 32. Any C program a) must contain at least one function b) need not contain ant function c) needs input data d) none of the above 33. Using goto inside for loop is equivalent to using a) continue b) break c) return d)none of the above 34. The program fragment int a=5, b=2; printf(“%d”,a+++++b); a) prints 7 b)prints 8 c) prints 9 d)none of the above 35. printf(“ab” , “cd”,”ef”); prints a) ab abcdef c) abcdef, followed by garbage value d) none of the above 36. Consider the following program segment. i=6720; j=4; while((i%j)==0) { i=i/j; j=j+1; } On termination j will have the value a) 4 b) 8 c) 9 d) 6720
What is the difference between abs() and fabs() functions?
What does it mean when a pointer is used in an if statement?
what is mallloc()?how it works?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
0 Answers Sikkim Manipal University,
How can I discover how many arguments a function was actually called with?
What is the difference between array and pointer in c?
What are identifiers and keywords in c?
what is the differance between pass by reference and pass by value.
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????