What are the modifiers available in c programming language?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

write a program to create a sparse matrix using dynamic memory allocation.

0 Answers  


Can we initialize extern variable in c?

0 Answers  


How can I write functions that take a variable number of arguments?

0 Answers  


What is time complexity c?

0 Answers  


How can I handle floating-point exceptions gracefully?

0 Answers  






Write a program to print fibonacci series without using recursion?

0 Answers  


value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?

6 Answers   Google,


What does 2n 4c mean?

0 Answers  


What is atoi and atof in c?

0 Answers  


What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these

3 Answers   IBM,


why you will give me a job in TCS.

7 Answers   TCS,


can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?

2 Answers  


Categories