Are there constructors in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can I read a directory in a C program?
2 Answers Bright Outdoor, Wipro,
How pointers are declared?
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
Write a program which has the following seven functions. The functions should be: • main() this calls the other 6 functions • fget_long() a function which returns a long data type from a file • fget_short() a function which returns a short integer variable from a file • fget_float() a function which returns a floating point variable from a file • fprt_long() a function which prints its single, long argument into a file • fprt_short() a function which prints its single, short argument into a file • fprt_float() a function which prints its single, floating point argument into a file. You should use fscanf() to get the values of the variables from the input (the file) and fprintf() to print the values to the other file. Pay attention to using the correct format for each of the data types.
WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?
8 Answers Carphone Warehouse, IBM, SAS,
Why c is procedure oriented?
Explain the ternary tree?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
Why are algorithms important in c program?
what is the advantage of software development
State two uses of pointers in C?
a C prog to swap 2 no.s without using variables just an array?