What is bash c?
Answer / Yashwant Kumar
There seems to be a typo in your question. It should be 'bash' (a shell for Unix-like operating systems), not 'bash c'. In C programming language, there's no concept named 'bash'.
| Is This Answer Correct ? | 0 Yes | 0 No |
whitch value return void main?
What is main return c?
Who is invented by c?
why we are using float in C
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 is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
What does the c in ctime mean?
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
Write a c program to build a heap method using Pointer to function and pointer to structure ?
0 Answers MAHINDRA, Protech, Sivan Tech,
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
Explain the difference between ++u and u++?