Is swift based on c?
No Answer is Posted For this Question
Be the First to Post Answer
how to print this pyramid * * * * * * * * * * * * *
How the processor registers can be used in C ?
whats the use of header file in c?
plz answer..... a program that reads non-negative integer and computes and prints its factorial
What is meant by type specifiers?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
Is there a way to compare two structure variables?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What does the file stdio.h contain?
What is the use of clrscr?
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
How to declare a variable?