What are the types of bitwise operator?
No Answer is Posted For this Question
Be the First to Post Answer
how the compiler treats any volatile variable?Explain with example.
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
write a program to swap bits in a character and return the value prototype of function char fun (char a, charb flag c) where fun returns a char, char a is a the value char b is the bit to be changed and flag c is the bit value for eg: x=fun(45,7,0) since 45 is 0010 0101 and ow x should contain the value 65 (0110 0101)
1 Answers Bosch, College School Exams Tests,
Do you know the use of fflush() function?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
say the following declaration is correct nr not. int b=a,n=0;
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc
What does the message "automatic aggregate intialization is an ansi feature" mean?
How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)