What is sizeof return in c?
No Answer is Posted For this Question
Be the First to Post Answer
where do we use volatile keyword?
Why can't we initialise member variable of a strucutre
How many types of operator or there in c?
multiple of 9 without useing +,* oprator
program in c to print 1 to 100 without using loop
What is chain pointer in c?
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
Why array starts with index 0
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
my name is nani i completed my b-tech in hyd now i want go for interveiw but i dont know the process of software field interveiws plz help me anyone how many rouds there n what rounds plz plz plz help me n where i can get these details
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping