What does c mean before a date?
No Answer is Posted For this Question
Be the First to Post Answer
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Here is a good puzzle: how do you write a program which produces its own source code as output?
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
what is the syallabus of computer science students in group- 1?
Explain how do you sort filenames in a directory?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
what is the height of tree if leaf node is at level 3. please explain
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
How to add two numbers without using semicolon at runtime
What is the difference between abs() and fabs() functions?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream