wt is d full form of c
Answers were Sorted based on User's Feedback
Answer / vishwanath pillay
It stands for nothing.
C language was more influenced by 'B' Language and was then
named 'C' as a SUCCESSOR language.
Is This Answer Correct ? | 14 Yes | 0 No |
Answer / ruturaj
There is no meaning of C. It is just a middle level
language. It was developed after the language B.
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / r.prasad
c means nothing.
after b language it was developed so that they were giving
name as c language.
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / himesh
C is a computer language. It is a procedural and case sensitive language.
Is This Answer Correct ? | 4 Yes | 13 No |
What are the string functions? List some string functions available in c.
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
what is the meaning of java that is (J A V A) full form of JAVA
71 Answers AKS University, Bhel, BNL, BPO, HCL, Peacecon,
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
character array A[12] can hold
what do you mean by defining a variable in our c code?
When should I declare a function?
what is the difference between unix os and linux os