Where define directive used?
No Answer is Posted For this Question
Be the First to Post Answer
What are c identifiers?
Why is c called "mother" language?
Taking an example,differentiate b/w loader and linker ?
What is getche() function?
write a c programme for add of two numbers with out use of arthematic operators
Explain spaghetti programming?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
What are the uses of a pointer?
What is void pointers in c?
why we use pointer in c
Write a program to print the prime numbers from 1 to 100?
What do you understand by friend-functions? How are they used?