a c variable cannot start with
a) an alphabet
b) a number
c) a special symbol
d) both b and c above
No Answer is Posted For this Question
Be the First to Post Answer
How can you find the exact size of a data type in c?
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
define switch statement?
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
Program to swap the any two elements in an array containing N number of elements?
1 Answers Bosch, Glenwood, Ugam Solutions,
Is return a keyword in c?
Explain how can you tell whether a program was compiled using c versus c++?
Is c compiled or interpreted?
Why does not use getgh(); and <conio.h> in c language.
is forign key will be unique key any table or not?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
How to find a missed value, if you want to store 100 values in a 99 sized array?