What do you mean by a local block?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program in C to reverse a number by recursive function?
Why c is called procedure oriented language?
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
How to calculate sum
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Write a program to swap two numbers without using third variable?
What is strcmp in c?
Write a code to remove duplicates in a string.
Are global variables static in c?
What does typedef struct mean?
How pointer is different from array?