Explain about block scope in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program that will print %d in the output screen??
#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.
What are data structures in c and how to use them?
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
How can I recover the file name given an open stream or file descriptor?
Is multithreading possible in c?
What is a function simple definition?
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
What are the types of assignment statements?
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
Explain how do you list a file’s date and time?
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }