How important is structure in life?
No Answer is Posted For this Question
Be the First to Post Answer
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
What is function what are the types of function?
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Describe the modifier in c?
Explain how can a program be made to print the line number where an error occurs?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Explain what are header files and explain what are its uses in c programming?
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }
How many levels of pointers can you have?
What is union in c?
Write a program to print factorial of given number without using recursion?