Do you have any idea about the use of "auto" keyword?
No Answer is Posted For this Question
Be the First to Post Answer
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
Can a pointer be volatile in c?
What do you know about the use of bit field?
Write a program in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
write a program to display reverse of a number using for loop?
from which concept of 'c', the static member function of 'c++' has came?
writ a program to compare using strcmp VIVA and viva with its output.
What is a void pointer in c?
The file stdio.h, what does it contain?
In c programming language, how many parameters can be passed to a function ?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?