What is the best style for code layout in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is typeof in c?
Explain how do you list a file’s date and time?
write a code for large nos multilication (upto 200 digits)
Explain can you assign a different address to an array tag?
What is the purpose of clrscr () printf () and getch ()?
what is the difference between getch() and getche()?
what is the difference between c and c++?
#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?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
What are macros in C?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
What is #include cctype?