Define macros.
How can I call a function, given its name as a string?
Just came across this question, felt worth sharing, so here it is I want you to make a C/C++ program that for any positive integer n will print all the positive integers from 1 up to it and then back again! Let's say n=5 I want the program to print: 1 2 3 4 5 4 3 2 1. Too easy you say? Okay then... You can ONLY USE: 1 for loop 1 printf/cout statement 2 integers( i and n) and as many operations you want. NO if statements, NO ternary operators, NO tables, NO pointers, NO functions!
Explain c preprocessor?
program for reversing a selected line word by word when multiple lines are given without using strrev
for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????
User define function contain thier own address or not.
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
What is the condition that is applied with ?: Operator?
explain what is a newline escape sequence?
How can I access an I o board directly?
Program to find the value of e raised to power x using while loop
Write a program to check palindrome number in c programming?