Why can't I perform arithmetic on a void* pointer?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we use header files in c?
Can we assign string to char pointer?
Explain threaded binary trees?
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
sum of two integers values only other then integer it should print invalid input.
Why is c called a mid-level programming language?
when user give a number it multiply with 9 without useing '+' and '*' oprator
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
Do you know null pointer?
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }