What are the types of macro formats?
No Answer is Posted For this Question
Be the First to Post Answer
how to swap 4 number without using temporary number?
Write a program to check whether a number is prime or not using c?
What are data breakpoints?
How does struct work in c?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
Not all reserved words are written in lowercase. TRUE or FALSE?
What is the use of getch ()?
difference between semaphores and mutex?
what is the difference between class and unio?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
Tell me can the size of an array be declared at runtime?