What do you know about the use of bit field?
No Answer is Posted For this Question
Be the First to Post Answer
how we can say java is platform independent, while we require JVM for that particular Operating System?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
How do you list a file’s date and time?
What are pointers in C? Give an example where to illustrate their significance.
What is the purpose of main() function?
What is nested structure?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What is indirection? How many levels of pointers can you have?
What is I ++ in c programming?
why integer range between -327680to+32767
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321