What are data types in c language?
No Answer is Posted For this Question
Be the First to Post Answer
palindrome for strings and numbers----Can anybody do the prog?
6 Answers CTS, TCS, Vipro Lifescience Pvt,
write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised
can a union be self-referenced?
What are void pointers in c?
What is the function of volatile in c language?
compare array with pointer?
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,
How can I invoke another program from within a C program?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
What does. int *x[](); means ?
What is structure packing in c?
4. main() { int c=- -2; printf("c=%d",c); }