What is #define in c?
No Answer is Posted For this Question
Be the First to Post Answer
How to write the code of the program to swap two numbers with in one statement?
if p is a string contained in a string?
Find greatest number out of 10 number without using loop.
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
What is a newline escape sequence?
What is #include called?
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
What are header files and what are its uses in C programming?
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
c program to arrange digits in a no in ascending and descending order
What is main () in c language?