Explain pointers in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between #include <header file> and #include “header file”?
can any one provide me the notes of data structure for ignou cs-62 paper
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
What is an operator?
how to copy a string without using c function
#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 output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??
What are the types of variables in c?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
What is the difference between volatile and const volatile?
Write down the program to sort the array.
1 1 12 21 123 321 12344231 how i creat it with for loop??