Explain bitwise shift operators?
No Answer is Posted For this Question
Be the First to Post Answer
What is C language ?
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
What are shell structures used for?
how do you execute a c program in unix.
What is the difference between the = symbol and == symbol?
can we write a program in c for printf and scanf without using header file stdio.h
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
Write a c program to print the sizes and ranges of different data types in c?
What is sparse file?
Is c call by value?
What is use of pointer?
Write a program to check whether a number is prime or not using c?