How macro execution is faster than function ?
No Answer is Posted For this Question
Be the First to Post Answer
How can we allocate array or structure bigger than 64kb?
What is switch in c?
What is the most efficient way to count the number of bits which are set in an integer?
Why c is a procedural language?
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
write a programme that inputs a number by user and gives its multiplication table.
Is struct oop?
What's the difference between a linked list and an array?
How can I manipulate individual bits?
difference between Low, Middle, High Level languages in c ?
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?