In C language, a variable name cannot contain?
No Answer is Posted For this Question
Be the First to Post Answer
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
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!
What are the key features of C?
How can we allocate array or structure bigger than 64kb?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Output for following program using for loop only * * * * * * * * * * * * * * *
const char * char * const What is the differnce between the above tow?.
Explain what’s a signal? Explain what do I use signals for?
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
Write program to remove duplicate in an array?
What is c programming structure?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question