main()
{
int l=6;
switch(l)
{
default:l=l+2;
case 4:l=4;
case 5:l++;
break;
}
printf("%d",l);
}
write a program to print the one dimensional array.
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What is wrong with this code?
Why does this code crash?
Explain what is a pragma?
What is the difference between malloc() and calloc() function in c language?
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
Do you know what are bitwise shift operators in c programming?
What is the difference between far and near in c?
What are the uses of null pointers?
What is the auto keyword good for?
Explain the process of converting a Tree into a Binary Tree.