Here is a good puzzle: how do you write a program which produces its own source code as output?
No Answer is Posted For this Question
Be the First to Post Answer
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
What is the general form of function in c?
What does. int *x[](); means ?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
wap in c to accept n number display the highest and lowest value
In scanf h is used for
Prove or disprove P!=NP.
What are derived data types in c?
What type of function is main ()?
What are local and global variables?