Is null always equal to 0(zero)?
No Answer is Posted For this Question
Be the First to Post Answer
swap two integer variables without using a third temporary variable?
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
Write a C program to read the internal test marks of 25 students in a class and show the number of students who have scored more than 50% in the test. Make necessary assumptions.
How to avoid structure padding in C?
write a C program to print the program itself ?!
What happens if you free a pointer twice?
What is a pointer value and address in c?
Write a program to check whether a number is prime or not using c?
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
can anyone proide me reading material on svit00ef27@yahoo.com please thanx in advance
What is the role of && operator in a program code?
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }