Answer Posted / vinod kumari
No, we can not define a function within another function.
we can only declare and call any function in any other
function.
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
Who is the founder of c language?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is the deal on sprintf_s return value?
When a c file is executed there are many files that are automatically opened what are they files?
What is pointers in c with example?
What are the advantages and disadvantages of pointers?
Do variables need to be initialized?
When should you not use a type cast?
Why is sprintf unsafe?
What is c preprocessor mean?
What is the explanation for modular programming?
Explain what are compound statements?
What are the types of bitwise operator?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What is the use of bit field?