What are enums in c?
No Answer is Posted For this Question
Be the First to Post Answer
Where we use clrscr in c?
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
Is c# a good language?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
What is the code for 3 questions and answer check in VisualBasic.Net?
There is a 100-story building and you are given two eggs. The eggs (and the building) have an interesting property that if you throw the egg from a floor number less than X, it will not break. And it will always brake if the floor number is equal or greater than X. Assuming that you can reuse the eggs which didn't broke; you got to find X in a minimal number of throws. Give an algorithm to find X in minimal number of throws.
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What type is sizeof?