C language questions for civil engineering
No Answer is Posted For this Question
Be the First to Post Answer
CopyBits(x,p,n,y) copy n LSBs from y to x starting LSB at 'p'th position.
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
Write a program to generate prime factors of a given integer?
Convert the following expression to postfix and prefix (A+B) * (D-C)
how to count no of words,characters,lines in a paragraph.
What is the benefit of using const for declaring constants?
in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first a) 6.6/a b) 2*a c) 3*c d) 2/n
write a own function to compare two strings with out using stringcomparition function?
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
how to write a c program to print list of fruits in alpabetical order?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;