Write a program or provide a pseudo code to flip the 2nd bit
of the 32 bit number ! (Phone Screen)
input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure
Explain what does the function toupper() do?
What is typedef struct in c?
What is local and global variable in c?
If an old women's age is the same as her three grand daughters i,mean the number of days old child=the no of weeks old child=no of months old child .The total yrs of all these ppl is 114 yrs...then how old is the old woman? the yr has 365 days..and 30 days each month.
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What are the data types present in c?
char ch=10;printf("%d",ch);what is the output
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
. 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
is it possible to change the default calling convention in c ?
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE