What are formal parameters?
No Answer is Posted For this Question
Be the First to Post Answer
How to convert decimal to binary in C using recursion??
How do c compilers work?
? ???Mirror Mirror on the wall????????
What does the format %10.2 mean when included in a printf statement?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What are the types of c language?
What are variables and it what way is it different from constants?
There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.
What does the && operator do in a program code?
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
How many keywords are there in c?