#include <iostream>
using namespace std;
int x = 2;
void dob(int) {
cout << ::x * 2;
}
int main() {
int a = 6;
dob(a);
}
Forwarded from for-coder (KEN ADAMS)
Why is GPT-4o Free? OpenAI’s Master Plan
OpenAI has launched GPT-4o for free with the aim of achieving mass adoption, competing with other models, collecting more data for training future models, countering the scorched earth theory, and driving network effects. They may also have even better products coming soon.
https://telegra.ph/Why-is-GPT-4o-Free-OpenAIs-Master-Plan-07-19
OpenAI has launched GPT-4o for free with the aim of achieving mass adoption, competing with other models, collecting more data for training future models, countering the scorched earth theory, and driving network effects. They may also have even better products coming soon.
https://telegra.ph/Why-is-GPT-4o-Free-OpenAIs-Master-Plan-07-19
Telegraph
Why is GPT-4o Free? OpenAI’s Master Plan
It got me thinking… Why is GPT-4o free? What is OpenAI thinking? The majority of their revenue comes from their paying customers, who pay 20 bucks a month for ChatGPT Plus. I’ve been paying for it since it came out, and now I’m wondering if I should cancel.…
#include<iostream>
using namespace std;
void swap(int a, int b){
int temp = a;
a= b;
b = temp;
}
int main(){
int a =2 , b = 4;
cout << a <<" "<< b << endl;
swap(a,b);
cout << a << " " << b << endl;
return 0;
}
What is the output of the above code
Anonymous Quiz
47%
2 4 //new_line 4 2
0%
24 //newline 42
40%
2 4 //newline 2 4
7%
error
7%
4 2 //newline 4 2
This media is not supported in your browser
VIEW IN TELEGRAM
Have a nice evening
Btw Which side are you on
Btw Which side are you on
Forwarded from TIKVAH-ETHIOPIA
ኢትዮጵያ ወርቅ አገኘች።
ሀገራችን በኦሎምፒኩ የመጀመሪያ የወርቅ ሜዳሊያ በማራቶን በጀግናው አትሌትላችን ታምራት ቶላ አማካኝነት አግኝታለች።
ምንም እንኳን በፓሪስ እየተመዘገበ ያለው ውጤት አንገት የሚያስደፋ ቢሆንም ዛሬ በወንዶች ማራቶን የተገኘው ውጤት የሚያኮራ ነው።
አትሌት ታምራት እጅግ በሚደንቅ ብቃት ነው ወርቁን ወደ ኢትዮጵያ እጅ ያስገባው።
አትሌት ታምራት ተጠባባቂ የነበረ ሲሆን የአትሌት ሲሳይ ለማን መጎዳት ተከትሎ ነው በውድድሩ ሊሳተፍ የቻለው።
@tikvahethiopia @tikvahethsport
ሀገራችን በኦሎምፒኩ የመጀመሪያ የወርቅ ሜዳሊያ በማራቶን በጀግናው አትሌትላችን ታምራት ቶላ አማካኝነት አግኝታለች።
ምንም እንኳን በፓሪስ እየተመዘገበ ያለው ውጤት አንገት የሚያስደፋ ቢሆንም ዛሬ በወንዶች ማራቶን የተገኘው ውጤት የሚያኮራ ነው።
አትሌት ታምራት እጅግ በሚደንቅ ብቃት ነው ወርቁን ወደ ኢትዮጵያ እጅ ያስገባው።
አትሌት ታምራት ተጠባባቂ የነበረ ሲሆን የአትሌት ሲሳይ ለማን መጎዳት ተከትሎ ነው በውድድሩ ሊሳተፍ የቻለው።
@tikvahethiopia @tikvahethsport
Consider the following enum declaration
enum spectrum {red, orange, yellow, green, blue, violet,indigo, ultraviolet};
spectrum band;
Which One of the following syntax is correct for the above code
Anonymous Quiz
9%
band = 2000;
13%
++band;
30%
band =3;
22%
band = orange + red;
26%
none