What is the use of define in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that accept anumber in words
When should you not use a type cast?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
How can you find out how much memory is available?
Why isnt any of this standardized in c?
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
What are categories used for in c?
What is the purpose of 'register' keyword in c language?
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
Write programs for String Reversal & Palindrome check