Untold Coding
31.6K subscribers
177 photos
5 videos
4 files
227 links
|| जय श्री राम ||
#100dayschallenge
Sharing HTML, CSS and JS magic
Join our Creative Journey!🎉
Download Telegram
Question of the day


#include<stdio.h
#define square(x) x*x
int main() {
int a, b=3;
a = square (b+2);
printf("%d",a);
return 0;
}
👍131👏1