C language questions for civil engineering
No Answer is Posted For this Question
Be the First to Post Answer
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
what is void pointer?
Difference between goto, long jmp() and setjmp()?
what is the structure?
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
Can a local variable be volatile in c?
What are the advantages and disadvantages of c language?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
printf("%d",(printf("Hello")); What it returns?
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
write a program to rearrange the array such way that all even elements should come first and next come odd
how we do lcm of two no using c simple if while or for statement