Explain built-in function?
No Answer is Posted For this Question
Be the First to Post Answer
write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
write a program to check whether a number is Peterson or not.
What does volatile do?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
What type of function is main ()?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
What is c++ used for today?
to convert a string without using decrement operater and string functions
What is a global variable in c?
What is variable in c with example?
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
What is Lazy evaluation in C? Give an example.