What does printf does?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
What should be keep precautions while using the recursion method?
diff between exptected result and requirement?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
Write a program to identify if a given binary tree is balanced or not.
how many errors in c explain deply
What is d'n in c?
Can you think of a way when a program crashed before reaching main? If yes how?
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?
What is unary operator?