Why cant I open a file by its explicit path?
No Answer is Posted For this Question
Be the First to Post Answer
In C language what is a 'dangling pointer'?
write the program for maximum of the following numbers? 122,198,290,71,143,325,98
What is external variable in c?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
In scanf h is used for
What is the method to save data in stack data structure type?
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
What are the types of data structures in c?
Why do we write return 0 in c?
Can you please explain the difference between syntax vs logical error?