If errno contains a nonzero number, is there an error?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }
What is the explanation for the dangling pointer in c?
You are given a string which contains some special characters. You also have set of special characters. You are given other string (call it as pattern string). Your job is to write a program to replace each special characters in given string by pattern string. You are not allowed to create new resulting string. You need to allocate some new memory to given existing string but constraint is you can only allocate memory one time. Allocate memory exactly what you need not more not less.
The variables are int sum=10,SuM=20; these are same or different?
Can you please explain the difference between syntax vs logical error?
how can i calculate mean,median,mode by using c program
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
c programming of binary addition of two binary numbers
What is the purpose of & in scanf?
what is meant by the "equivalence of pointers and arrays" in C?