C language questions for civil engineering
No Answer is Posted For this Question
Be the First to Post Answer
What is c token?
Write a function that will take in a phone number and output all possible alphabetical combinations
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
what is a non volatile key word in c language?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
What is logical error?
What is memcpy() function?
What are the string functions? List some string functions available in c.
What is your favorite subject?
1 Answers Ericsson, Invendis, Tech Mahindra,
Can a pointer point to null?
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?