GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is a 'locale'?
write a function for strtok()??
char ch="{'H','I',0};printf("%s",ch);what is output
a=5 a=a++/++a
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
whenever a question is posted in a particular category in allinterview.com, Is there any facility to receive an indication mail. For eg: I need to receive an indication email, whenever a question is posted under the category “C Langauage”.
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
What is a null pointer in c?
What is the Purpose of 'extern' keyword in a function declaration?
List the difference between a While & Do While loops?
What are global variables?
Is it valid to address one element beyond the end of an array?