Do you know the use of 'auto' keyword?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is the difference between far and near ?
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
The __________ attribute is used to announce variables based on definitions of columns in a table?
Difference between malloc() and calloc() function?
What is data structure in c language?
Explain what does the format %10.2 mean when included in a printf statement?
What tq means in chat?
what is stack , heap ,code segment,and data segment
What are terms in math?
print the table 5 in loops
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?