This document contains a list of questions about programming in C and C++ without using typical operators or syntax elements. It asks how to perform common tasks like addition, multiplication, printing text, and more without using symbols like "+", "*", ";", loops, or additional variables. It also includes a question about generating a program's own source code as output and finding a two-digit number that is three times the sum of its digits.
1 of 2
Download to read offline
More Related Content
C your C
1. C your C Skills By Sabith B BE Computer Science [email_address]
2. How to add two numbers How to multiply two numbers How to add two numbers without using "+" How to multiply two numbers without using “*“ Write a c or c++ program to print "Hello World" but without using semicolon(  even once in code ?????? How to draw a circle without using header files? How do you write a program which produces its own source code as its output? How to print a semicolon without using semicolon else where in the program? Write a C program  to find a peculiar two digit number  which is three times the sum of its digits. How to Print Numbers without using Loops(for, while, etc.,): without using third variable how to swap two variable?