What's the right way to use errno?
No Answer is Posted For this Question
Be the First to Post Answer
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
What is the difference b/w main() in C language and main() in C++.
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
How to reverse a string using a recursive function, without swapping or using an extra memory?
31 Answers Cisco, Mind Tree, Motorola, Ophio, Sony, TCS, Wipro,
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
How do you override a defined macro?
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
while initialization of array why we use a[][2] why not a[2][]...?
What is meant by high-order and low-order bytes?
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?