What is methods in c?
No Answer is Posted For this Question
Be the First to Post Answer
If null and 0 are equivalent as null pointer constants, which should I use?
Can we add pointers together?
diff. between *p and **p
What does c in a circle mean?
Code for calculating square root without using library function, of math.h
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?
What is a example of a variable?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
Is c call by value?
Why is c known as a mother language?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??