Why dont c comments nest?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to calculate sum of digits till it reduces to a single digit using recursion
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
Explain what is a const pointer?
Define recursion in c.
How do you define structure?
Why use int main instead of void main?
Write a program for finding factorial of a number.
What does sizeof int return?
write a function which accept two numbers from main() and interchange them using pointers?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?