How macro execution is faster than function ?
No Answer is Posted For this Question
Be the First to Post Answer
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
What are the types of bitwise operator?
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.
What is dynamic memory allocation?
What is the Difference between Class and Struct?
What is the difference between int main and void main?
will u please send me the placement papers to my mail???????????????????
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
Define VARIABLE?
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }