Do you have any idea about the use of "auto" keyword?
No Answer is Posted For this Question
Be the First to Post Answer
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
What is the purpose of the preprocessor directive error?
Explain what are multibyte characters?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
C passes By value or By reference?
5 Answers Geometric Software, Infosys,
There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
what about "char *(*(*a[])())();"
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
What are the types of c language?
Write a Program to accept different goods with the number, price and date of purchase and display them
C program to read the integer and calculate sum and average using single dimensional array