What is #define used for in c?
No Answer is Posted For this Question
Be the First to Post Answer
How to declare a variable?
what is the difference between NULL & NUL keywords in C?
how to compare two strings without using strcmp() function??
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
WHAT IS HEADER?
Explain how can you tell whether a program was compiled using c versus c++?
How can I copy just a portion of a string?
What is zero based addressing?
how can write all 1to 100 prime numbers using for loop,if and break ?
what is mean by Garbage collection ? Please answer me. Advance thanks.
if we take a number as a char then can we manipulate(add, subtract) on this number
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.