Is javascript written in c?
No Answer is Posted For this Question
Be the First to Post Answer
Who is the founder of c language?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
What is a macro in c preprocessor?
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
Is it possible to have a function as a parameter in another function?
What is an auto variable in c?
What is the difference between printf and scanf )?
in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first a) 6.6/a b) 2*a c) 3*c d) 2/n
Explain how do you generate random numbers in c?
Explain what standard functions are available to manipulate strings?