What is a newline escape sequence?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int a[10]; printf("%d",*a+1-*a+3); }
What is volatile variable how do you declare it?
List some applications of c programming language?
What is bubble sort technique in c?
How to write a program for swapping two strings without using 3rd variable and without using string functions.
main() { printf("hello%d",print("QUARK test?")); }
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
find out largest elemant of diagonalmatrix
what is the diff b/w static and non static variables in C. Give some examples plz.
How can you invoke another program from within a C program?
What is the difference between fork() and vfork()?
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array