What is a nested formula?
No Answer is Posted For this Question
Be the First to Post Answer
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
in malloc and calloc which one is fast and why?
What will be the outcome of the following conditional statement if the value of variable s is 10?
Is main() function predfined or userdefined?
Write a program to add a given duration with time(24hrs format)
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
What is quick sort in c?
What is file in c language?
What is the general form of #line preprocessor?
What does typeof return in c?
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.