Write a program for finding factorial of a number.
No Answer is Posted For this Question
Be the First to Post Answer
how to write a c program to print list of fruits in alpabetical order?
Write a c program to demonstrate character and string constants?
What is a example of a variable?
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
How can I dynamically allocate arrays?
Can we access the array using a pointer in c language?
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
If the size of int data type is two bytes, what is the range of signed int data type?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is floating point constants?
what is the difference between declaration and definition of a variable or function ?