What is meant by errors and debugging?
No Answer is Posted For this Question
Be the First to Post Answer
print 1-50 with two loop & two print Statement
What is a C array and illustrate the how is it different from a list.
What is the relationship between pointers and data structure?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
what is purpose of fflush(stdin) function
Explain what is meant by 'bit masking'?
Explain what is the benefit of using #define to declare a constant?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What is equivalent to ++i+++j?
1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
What is the value of c?