Should I learn data structures in c or python?
No Answer is Posted For this Question
Be the First to Post Answer
how many times of error occur in C
Explain the difference between structs and unions in c?
what is the difference between global variable & static variable declared out side all the function in the file.
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
What are the key features of C?
What’s the special use of UNIONS?
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
#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 is the difference between array and linked list in c?
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
How do you declare a variable that will hold string values?