Differentiate between ordinary variable and pointer in c.
No Answer is Posted For this Question
Be the First to Post Answer
What is data structure in c language?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
What is the mean of function?
What is the purpose of #pragma directives in C?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
28 Answers 3D PLM, Code Studio, Deltech, IBM,
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
What are control structures? What are the different types?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
Is it possible to create recycle bin in mobiles?