What are compound statements?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
write a programe to find the factorial of given number using recursion
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
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 is context in c?
What is c variable?
Why data types in all programming languages have some range? Why ritche have disigned first time likethat?Why not a single data type can support all other types?
What is FIFO?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Write a program to implement queue.
can v write main() { main(); } Is it true?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???