What is the difference between c &c++?
No Answer is Posted For this Question
Be the First to Post Answer
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
What is the general form of a C program?
What is 1f in c?
What is printf () in c?
WHAT IS C?
What is a lvalue
Write a code of a general series where the next element is the sum of last k terms.
How to define structures? ·
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
how to get the starting address of file stored in harddisk through 'C'program.
Which weighs more, a gram of feathers or a gram of gold?