Trending Technology
http://en.wikipedia.org/wiki/Computer_programming -Solve your problems of C Language and other programming languages
History
C was developed at Bell Laboratories in 1972 by Dennis Ritchie. Many of its principles and ideas were taken from the earlier language B and B's earlier ancestors BCPL and CPL. CPL ( Combined Programming Language ) was developed with the purpose of creating a language that was capable of both high level, machine independent programming and would still allow the programmer to control the be
Since its new beginning of this page. Kindly suggest tech focused names.
😜😜😂
Write a C function to convert a String of ip address to hex?
Write a C function to convert a String of ip address to hex? https://t.co/FA2OEKOxil
tech.queryhome.com Write a C function to convert a String of ip address to hex?
how to print all the cousins of a node in binary search tree, except second cousins?
how to print all the cousins of a node in binary search tree, except second… https://t.co/v32l8R5g11
tech.queryhome.com how to print all the cousins of a node in binary search tree, except second cousins?
how to print all the cousins of a node in binary search tree, expect second cousins?
how to print all the cousins of a node in binary search tree, expect second… https://t.co/qleSfyKA1f
tech.queryhome.com how to print all the cousins of a node in binary search tree, expect second cousins?
DS: Rotate (right to left) elements of an array by the value of configured number.
DS: Rotate (right to left) elements of an array by the value of… https://t.co/xVE09cH65P
tech.queryhome.com Write a c program that rotate elements of an array by the value of configured number "n". For example: ... , 2, 3} I am looking for efficient program.
Is address line will impact on ram size and OS?
Is address line will impact on ram size and OS? https://t.co/hKppvMKVEC
tech.queryhome.com Is address line will impact on ram size and OS?
Multiply two long integers of n digits using divide and conquer method?
Multiply two long integers of n digits using divide and conquer method? https://t.co/808CK1KttB
tech.queryhome.com You are given 2 long integers having n digits each and you are required to multiply them ... the time complexity using traditional divide and conquer
What is the use of %G in C programming?
What is the use of %G in C programming? https://t.co/CVBb61A6ws
tech.queryhome.com What is the use of %G in C programming?
Please help me to find out the problem in the following C code?
Please help me to find out the problem in the following C code? https://t.co/YB6lS2BijC
tech.queryhome.com where is the problem in this code???,,,,, EOS '\0' int islet(char c) { if(c>='a ... illegal");} else{ printf("legal"); } return(0); }
Why the output of below program is not as expected?
Why the output of below program is not as expected? https://t.co/QnT2sHVHC6
tech.queryhome.com main() { int a=10; printf("%d ",a++==a); } Output should be 1 but it is coming as 0, Can anyone please explain?
How can a variable be declared and initialized as an array in C?
How can a variable be declared and initialized as an array in C? https://t.co/Hcxq2ldDZP
tech.queryhome.com How can a variable be declared and initialized as an array in C?
Concatenate the sums of each word to form the result WORLD WIDE WEB = 402326?
Concatenate the sums of each word to form the result WORLD WIDE WEB = 402326? https://t.co/I3DQml97EG
tech.queryhome.com Crazy Zak has designed the below steps which can be applied on any given string (sentence) to ... on the sentence and returns the result (number).
Find the sum of sums of digits of a given number, as per the method mentioned below?
Find the sum of sums of digits of a given number, as per the method mentioned below? https://t.co/rpts2BkBN0
tech.queryhome.com Alex has been asked by his teacher to do an assignment on sums of digits of a number. The assignment ... i.e. the given number will always be >9.
What type of conversion is not accepted in C & why? a)char to int b)float to char pointer c)int to char d)double to char
What type of conversion is not accepted in C & why? a)char to int b)float to char pointer… https://t.co/VlShAGMWL5
tech.queryhome.com What type of conversion is not accepted in C and why? a) char to int b) float to char pointer c) int to char d) double to char
How to pass Doubly Linked List as parameter in a C function?
How to pass Doubly Linked List as parameter in a C function? https://t.co/LAbkMT7D1c
tech.queryhome.com How to pass Doubly Linked List as parameter in a C function?
number of occurrences in c
number of occurrences in c https://t.co/fSuIHSV76k
tech.queryhome.com In a class they will give some set of students height and we need to calculate number of occurrence ... 1 if they give 60 your program should return 0
find output in following pattern
find output in following pattern https://t.co/0Mpd5ZD3LL
tech.queryhome.com eg: 12345 1^2+2^3+3^4+4^5+5^5 LOGIC: is first digit should be multiplied to the number of times of the ... this number. eg 2: 1789 1^7+7^8+8^9+9^4
Find the sum of sums of digits of a given number, as per the method mentioned below?
Find the sum of sums of digits of a given number, as per the method mentioned below? https://t.co/mam11omwMB
tech.queryhome.com Alex has been asked by his teacher to do an assignment on sums of digits of a number. The assignment ... i.e. the given number will always be >9.
What is the difference between c and c++ in terms of design? https://t.co/bUaAAFhody
How can pow() function of C output the exact value of a^b without any precision loss?
How can pow() function of C output the exact value of a^b without any precision loss? https://t.co/vRcGtWHjf1
tech.queryhome.com int main() { printf("%.0f",pow(2,1023)); return 0; } Output: ... is how is it achieved for such a big number?
Predict the output of below C program?
Predict the output of below C program? https://t.co/qoWfGStdA6
tech.queryhome.com int main() { int n; for(n = 7; n!=0; n) printf("n = %d", n); getchar(); return 0; }
C : Difference between ++*p, *++p and *p++ in case pointer p is pointing to an integer array ?
C : Difference between ++*p, *++p and *p++ in case pointer p is pointing to… https://t.co/0u70WTmqM0
tech.queryhome.com int arr[ ] = { 1, 2 }; p = arr; /* p is pointing to arr */ How pointer p will behave ?
What is the difference between c and c++ in terms of design?
What is the difference between c and c++ in terms of design? https://t.co/UzMJ9s2vUE
tech.queryhome.com What is the difference between c and c++ in terms of design?
How can pow() function of C output the exact value of a^b without any precision loss?
How can pow() function of C output the exact value of a^b without any precision loss? https://t.co/KEQXF4CzPW
tech.queryhome.com int main() { printf("%.0f",pow(2,1023)); return 0; } Output: ... is how is it achieved for such a big number?
What is the relation of cyclic property of data type with data overflow?
What is the relation of cyclic property of data type with data overflow? https://t.co/ZFttpiolOT
tech.queryhome.com What is the relation of cyclic property of data type with data overflow?
C: Compress String with character and its count. Example: "aaabbba" -> "a3b3a1”
C: Compress String with character and its count. Example: "aaabbba" -> "a3b3a1” https://t.co/Coqno37YP6
tech.queryhome.com C: Compress String with character and its count. Example: "aaabbba" -> "a3b3a1”
Write a c program that prompts the user to input five numbers and get their sum?
Write a c program that prompts the user to input five numbers and get their sum? https://t.co/AayNc7lhtl
tech.queryhome.com Write a c program that prompts the user to input five numbers and get their sum?
How do I take large numbers of input around 100000 digits in length in C/C++?
How do I take large numbers of input around 100000 digits in length in C/C++? https://t.co/COkUmnxsKU
tech.queryhome.com How do I take large numbers of input around 100000 digits in length in C/C++?
How to print a variable name in C?
How to print a variable name in C? https://t.co/Yn7OZE9X92
tech.queryhome.com How to print a variable name in C?
For given list of numbers find out triplets with sum 0 using C?
For given list of numbers find out triplets with sum 0 using C? https://t.co/9cS25JFf5F
dlvr.it/PVqlTW For given list of numbers find out triplets with sum 0 using C? Input : arr[] = {0, -1, 2, -3, 1} Output : 0 -1 1 2 -3 1
C: What is the difference between memory comparison and string comparison ?
C: What is the difference between memory comparison and string comparison ? https://t.co/NMGaXTAQVe
dlvr.it/PVmlQz Are both comparisons same or different ?
C: What is wrapper function and how it is written in C language ?
C: What is wrapper function and how it is written in C language ? https://t.co/91QvdQaLsD
dlvr.it/PVlJtx C: What is wrapper function and how it is written in C language ?
What are the drawbacks of traditional programming?
What are the drawbacks of traditional programming? https://t.co/MZ3bCcWvNo
dlvr.it/PVD6ZX What are the drawbacks of traditional programming?
How to reverse a stack using a queue?
How to reverse a stack using a queue? https://t.co/3wUqZ3FOw4
dlvr.it/PT4bzV How to reverse a stack using a queue? Preferably share the sample C code?
Click here to claim your Sponsored Listing.
Contact the business
Address
B. H. U
Bangalore
560006
No. 6 & 13, Accord Road, K. R. Colony, Krishna Reddy Layout, Amarjyoti Layout, Domlur
Bangalore, 560071
The Fuller Life is an employee wellbeing company with 20+years of experience in the industry.
T2-A, #17, 3rd Floor, Casa Capitol, Woodstreet, Opp. Brigade Towers, Ashoknagar
Bangalore, 560025
Event Management agency since 1998. Over 2300 events done so far. Now into their own event propertie
Road No 3167, ESI Hospital Road, HAL 2nd Stage, 1st Main, Indiranagar
Bangalore, 560008
FIGURINE FITNESS Bangalore's Leading Dance Fitness Studio
# 421, 7th Cross, Domlur Layout
Bangalore, 560071
Body In Motion is a Fitness & Dance Studio. We conduct classes in: Aerobics, Thai Kickboxing, Zumba, Salsa, Kids & Bollywood Dance
Hennur Bagalur Main Road, Next To Southern Asia Bible College, Kothanur
Bangalore, 560077
XLR8 successfully merges the frenzied appeal of outdoor sports with the pace, exhilaration, and flexibility of an indoor format. [email protected]
No. 341 36th A Cross 5th Block Jayanagar
Bangalore, 560041
Raise your sense of Well-being
BTM 2st Stage
Bangalore, 5600076
Dealing In: Branding, Promotion (Indoor/Outdoor), SEO Marketing, Web Application, e-Commerce, Presentation, Graphic, Digital Media, Transportation, Group Travel, Car on Rent, Event...
No. 20, Lake View Manor, Annaswamy Mudaliar Street, Opp Ulsoor Lake, Bangalore-560042
Bangalore, 560046
GoSports Foundation is a non-profit venture primarily focused on supporting young and emerging Indian sporting talent.
#55, Koramangala Industrial Layout, Opp. Jyothi Nivas College
Bangalore, 560095
Latino Rhythms Dance Academy was found in 2005 and then since has grown into leaps and bounds. Having taught around 15000 students in span of 16 yrs, it is now grown into Full fled...