What is a scope resolution operator in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can I read and write comma-delimited text?
What is sizeof in c?
Subtract Two Number Without Using Subtraction Operator
what is the use of getch() function in C program.. difference b/w getch() and getche()??
29 Answers HCL, IBM, Infosys, TCS, Wipro,
void main() { int i=5; printf("%d",i++ + ++i); }
What is hashing in c language?
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
can we write a program in c for printf and scanf without using header file stdio.h
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
Explain what is wrong in this statement?
What is hungarian notation? Is it worthwhile?
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