Are there any problems with performing mathematical operations on different variable types?
No Answer is Posted For this Question
Be the First to Post Answer
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
What does c value mean?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Can you please compare array with pointer?
difference between memcpy and strcpy
Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??
What is 2c dna?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
what is the difference between auto and static keywords
1 Answers cDot, College School Exams Tests, TCS,
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }
Does c have class?