int x=sizeof(!5.856);
What will value of variable x?
Answer Posted / garav
float is 4 so 4 is the ans
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Are comments included during the compilation stage and placed in the EXE file as well?
How do I get a null pointer in my programs?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
In C language, a variable name cannot contain?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
Is it fine to write void main () or main () in c?
What is the right type to use for boolean values in c?
How do you sort filenames in a directory?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
What is New modifiers?
Is malloc memset faster than calloc?
What are keywords c?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Can a pointer be volatile in c?