Computer Science, asked by akyadavbad, 9 months ago

What will be the output of following code.(i)include int sub (int, int); void main( ) { int a=2,b=2; cout <

Answers

Answered by Anonymous
0

Answer:

#include <cstdlib>

#include <iostream>

using namespace std;

int main()

{

int ran = rand();

cout << ran << endl;

return 0;

}

Similar questions