Explain what is the difference between functions abs() and fabs()?
No Answer is Posted For this Question
Be the First to Post Answer
how many errors in c explain deply
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
2. Counting in Lojban, an artificial language developed over the last fourty years, is easier than in most languages The numbers from zero to nine are: 0 no 1 pa 2 re 3 ci 4 vo 5 mk 6 xa 7 ze 8 bi 9 so Larger numbers are created by gluing the digit togather. For Examle 123 is pareci Write a program that reads in a lojban string(representing a no less than or equal to 1,000,000) and output it in numbers.
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
What's a good way to check for "close enough" floating-point equality?
How to implement a packet in C
Is there a way to jump out of a function or functions?
FILE PROGRAMMING
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?