Latest Answer: no,c does not have the nested functionit consist of only one function that is mainwe can declared the function inside the main but not define ...
Latest Answer: The question is already posted on the list..... A lot of answers are also available.... u should see the previous answers before posting a new problem..... ...
Latest Answer: #include #include void main() { int alphabet=65; clrscr(); while(alphabet
Latest Answer: A simple recursive function should do the trickAssuming "node" being typedef-ed to your link structure and "head" being global pointer pointing to your first elementnode *reverse(node *n){ node *prev; static node *tmp_head; if (n->next == ...
Write a program to print nos between 100 and 500 which should print nos having 3 different digitsfor eg:it should print :123,159,342 etc all have different digits...but not 121, 122,333, see here atleast 2 digits are equal
Latest Answer: This is not a final answer ...More an algorithmSuppose we will consider numbers till 9,999 only ...Array1 --> One,two,three,four,five ......nineArray2 --> Eleven, Twelve,thirteen,Fourteen.....NineteenArray3 --> Twenty,Thirty,Forty,Fifty,Sixty......NinetyArray4 ...
Write a program to get the following output ..n should be entered by user...like when n=5 the output should be110101101010101
Latest Answer: Hi BinnyPlease find the two files test.c and Makefile file for make a connection with test database in mysql.test.c#include #include #include #include #include MYSQL_RES ...
Latest Answer: bool StrtoHex(const char* str){//If string is emptyif(str == NULL)return false;//Variable to indicate number is positive or negative. Default is positive bool isNeg = false;//Index of stringint index = 0;int num = 0;//If first char is '-' then number ...
View page << Previous 15 16 17 18 [19] 20 21 22 23 24 Next >>

Go Top