What are qualifiers?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type

7 Answers  


how to find anagram without using string functions using only loops in c programming

0 Answers  


What is character constants?

0 Answers  


How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.

1 Answers  


hi how to convert program from notepad to turboc editor can u please help me

3 Answers  






Can i use “int” data type to store the value 32768? Why?

0 Answers  


main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }

3 Answers   ME,


find the sum of two matrices and WAP for it.

0 Answers   Huawei,


Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0

6 Answers   Qualcomm,


Write a program to find whether the given number is prime or not?

6 Answers  


Give differences between - new and malloc() , delete and free() ?

0 Answers   Genpact,


main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............

3 Answers  


Categories