Differentiate between static and dynamic modeling.
No Answer is Posted For this Question
Be the First to Post Answer
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
Explain what will the preprocessor do for a program?
What the advantages of using Unions?
1. main() { printf("%d",printf("HelloSoft")); } Output?
In a switch statement, what will happen if a break statement is omitted?
How do you declare a variable that will hold string values?
write a programming in c language, 1 3 5 7 9 11
When c language was developed?
How can I do graphics in c?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
What are bit fields? What is their use?
What is the difference function call by value & function call by reference?