What is the right type to use for boolean values in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is register a keyword in c?
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
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.
What is meant by errors and debugging?
how do you redirect stdout value from a program to a file?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
What is the size of structure in c?
What is logical error?
Where are local variables stored in c?
which of 'arrays' or 'pointers' are faster?
What is the role of && operator in a program code?
What are compound statements?