Is a pointer a kind of array?
No Answer is Posted For this Question
Be the First to Post Answer
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
What is a ternary operator in c?
What library is sizeof in c?
What 'lex' does?
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
Explain Linker and Loader
What is time null in c?
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
Describe wild pointers in c?
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");