What is a macro?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
Please list all the unary and binary operators in C.
What is the use of a static variable in c?
Explain the importance and use of each component of this string: Foo.Bar, Version=2.0.205.0, Culture=neutral, PublicKeyToken=593777ae2d274679d
What is a void pointer in c?
What is the difference between variable declaration and variable definition in c?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
#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?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What is #error and use of it?
What is the use of #include in c?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }