hi,
which software companys will take,if d candidate's % is jst
55%?
No Answer is Posted For this Question
Be the First to Post Answer
Process by which one bit pattern in to another by bit wise operation is?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What is array of pointers to string?
Find the largest number from the given 2 numbers without using any loops and the conditional operator.
Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June
Difference between malloc() and calloc() function?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What is the scope of global variable in c?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
how to write a prog in c to convert decimal number into binary by using recursen function,
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
Write a program to find factorial of a number using recursive function.