Differentiate between a for loop and a while loop? What are it uses?
No Answer is Posted For this Question
Be the First to Post Answer
Can anyone tell what is stack overflow? what precaution we should take?
How would you sort a linked list?
how to print value of e(exp1)up to required no of digits after decimal?
What is meant by preprocessor in c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
can anyone suggest some site name..where i can get some good data structure puzzles???
What is the need of structure in c?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
what do the 'c' and 'v' in argc and argv stand for?
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }