What is #include in c?
Answer / dhanshri chabukswar
#include means "bring in this file's code before compiling"....
| Is This Answer Correct ? | 0 Yes | 0 No |
Is struct oop?
write a programme that inputs a number by user and gives its multiplication table.
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
What does c in a circle mean?
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
what about "char *(*(*a[])())();"
Can a pointer be null?
What is define directive?
how to compare two strings without using strcmp() function??
What is time complexity c?
what will be the output for the following main() { printf("hi" "hello"); }
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)