What language is c written?
No Answer is Posted For this Question
Be the First to Post Answer
Can you please explain the difference between syntax vs logical error?
How to write a program for swapping two strings without using 3rd variable and without using string functions.
what is the maximum no. of bytes calloc can allocate
What is an identifier?
What is a wrapper function in c?
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
What is a header file?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
Can you please explain the difference between strcpy() and memcpy() function?