What does 2n 4c mean?
No Answer is Posted For this Question
Be the First to Post Answer
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
print the table 5 in loops
which is conditional construct a) if statement b) switch statement c) while/for d) goto
write a program without using main function?
What is hungarian notation? Is it worthwhile?
how can i sort numbers from ascending order and descending order using turbo c..
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
how can make variable not in registers
What is scope of variable in c?
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.