What is the newline escape sequence?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between pure virtual function and virtual function?
Define C in your own Language.
What is void main ()?
What is keyword in c?
What is structure of c program?
What does != Mean in c?
In a header file whether functions are declared or defined?
Why header file is used in c?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
difference between object file and executable file
Give a method to count the number of ones in a 32 bit number?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }