What is #ifdef ? What is its application?
No Answer is Posted For this Question
Be the First to Post Answer
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Here is a good puzzle: how do you write a program which produces its own source code as output?
What is encapsulation?
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
Write a program to swap two numbers without using the third variable?
What is a function simple definition?
Write a program to find the biggest number of three numbers in c?
the operator for exponencation is a.** b.^ c.% d.not available
how write a addtion of two single dimensional array using of pointer in c language?
Write a c program to enter a string of paragraph and replacing a particular word which is repeated in the paragraph by another word?
2 Answers ME, Synfusion, Wipro,
Why cann't whole array can be passed to function as value.
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }