C language questions for civil engineering
No Answer is Posted For this Question
Be the First to Post Answer
What are the rules for identifiers in c?
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
difference between my-strcpy and strcpy ?
3 Answers Geometric Software, IIM, Infosys,
What is a function in c?
How do I send escape sequences to control a terminal or other device?
what is the output of printf("%d",(scanf("%d",10));
Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.
What is the difference between static and global variables?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
for example user gives input as " 20 or 20.0 or rs 20.0 or 20.00 or rs20 and so .. on " and the output should be stored as " rs.20.00 " in a variable
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?