Is void a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
How to write the code of the program to swap two numbers with in one statement?
how to find your architecture is LittleEndian or BigEndian?
Are enumerations really portable?
How to reverse a linked list
1 Answers Aricent, Fidelity, IBM, TCS,
Write a program to swap two numbers without using the third variable?
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
What are the difference between a free-standing and a hosted environment?
c program to input values in a table(using 2D array) and print odd numbers from them
Explain the difference between ++u and u++?
Why structure is used in c?