What is meant by 'bit masking'?
No Answer is Posted For this Question
Be the First to Post Answer
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 output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
What does main () mean in c?
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
What is operator promotion?
could u able to tell about suresoft technical session
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
What is the difference between array and structure in c?
How can I find the modification date of a file?
Why cann't whole array can be passed to function as value.