What are the standard predefined macros?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate abs() function from fabs() function.
Write code for finding depth of tree
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
palindrome for strings and numbers----Can anybody do the prog?
6 Answers CTS, TCS, Vipro Lifescience Pvt,
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What is this infamous null pointer, anyway?
What is pragma in c?
code for selection sort?
Write a program to find whether the given number is prime or not?
Is c is a low level language?
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?
What is the difference between procedural and declarative language?