Write a program or provide a pseudo code to flip the 2nd bit
of the 32 bit number ! (Phone Screen)
What is the real time usage volatile?
why we wont use '&' sing in aceesing the string using scanf
What is type qualifiers?
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc
How to draw the flowchart for structure programs?
What is the difference between declaring a variable and defining a variable?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
multiple of 9 without useing +,* oprator
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
what is available in C language but not in C++?
10 Answers CTS, TCS,