What’s a signal? Explain what do I use signals for?
No Answer is Posted For this Question
Be the First to Post Answer
What is dangling pointer in c?
What is bss in c?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is echo in c programming?
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
can we print any string in c language without using semicolon(;)(terminator) in whole program.
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What is Full Form of C and Why We use C
which do you prefer C or Pascal?
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
How the C program can be compiled?