What is the use of #include in c?
No Answer is Posted For this Question
Be the First to Post Answer
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
What is the value of h?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
Write a function in c to find the area of a triangle whose length of three sides is given.
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .
What are the advantages of c language?
Why do we need a structure?
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
What is pivot in c?
How to add two numbers without using semicolon at runtime
Write a code to generate a series where the next element is the sum of last k terms.