When c language was developed?
No Answer is Posted For this Question
Be the First to Post Answer
How can I prevent another program from modifying part of a file that I am modifying?
Explain how many levels deep can include files be nested?
Name the language in which the compiler of "c" in written?
How to throw some light on the b tree?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
What is getch () for?
declare afunction pointer to int printf(char *)?
What is pass by value in c?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???