Why is c so important?
No Answer is Posted For this Question
Be the First to Post Answer
Which sorting algorithm is the best?
What is a spanning Tree?
What are the types of arrays in c?
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
25 Answers Datamatics, Solartis, TCS, ThinkBox, Trine,
Write a program that can show the multiplication table.
Explain the difference between null pointer and void pointer.
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
mplementation of stack using any programing language
Is fortran faster than c?
Are pointers really faster than arrays?
What are the types of data structures in c?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none