WHAT IS THE ABREVATION OF FORTRAN?
Answers were Sorted based on User's Feedback
Answer / devi
FORTRN-FORmula TRANslator(It is a high level Programming Language)
| Is This Answer Correct ? | 0 Yes | 0 No |
let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a->b->c and c->a.
1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?
Which function cannot be overloaded c++?
Why is c++ a mid-level programming language?
Is string data type in c++?
Specify some guidelines that should be followed while overloading operators?
What are static variables?
const char * char * const What is the differnce between the above two?
What is the difference between the parameter to a template and the parameter to a function?
Which bit wise operator is suitable for checking whether a particular bit is on or off?
What is setf in c++?
Where must the declaration of a friend function appear?